push
circleci
7 of 20 new or added lines in 5 files covered. (35.0%)
1626 existing lines in 88 files now uncovered.18295 of 34038 relevant lines covered (53.75%)
1.67 hits per line
UNCOV
1
|
from pathlib import Path |
3✔ |
2 |
|
|
UNCOV
3
|
import pytest |
3✔ |
4 |
|
|
5 |
|
|
UNCOV
6
|
@pytest.fixture
|
3✔ |
UNCOV
7
|
def parent_path(): |
3✔ |
8 |
return Path(__file__).parent
|
× |
9 |
|
|
10 |
|
|
UNCOV
11
|
@pytest.fixture
|
3✔ |
UNCOV
12
|
def test1_xlsx(parent_path): |
3✔ |
13 |
return str(parent_path / "test1.xlsx") |
× |
14 |
|
|
15 |
|
|
UNCOV
16
|
@pytest.fixture
|
3✔ |
UNCOV
17
|
def default_xlsx(parent_path): |
3✔ |
18 |
return str(parent_path / "default.xlsx") |
× |
19 |
|
|
20 |
|
|
UNCOV
21
|
@pytest.fixture
|
3✔ |
UNCOV
22
|
def test2_bad_header_xlsx(parent_path): |
3✔ |
23 |
return str(parent_path / "test2_bad_header.xlsx") |
× |