push
circleci
1 of 1 new or added line in 1 file covered. (100.0%)
2214 existing lines in 115 files now uncovered.15221 of 34245 relevant lines covered (44.45%)
0.82 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") |
× |