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