File tree Expand file tree Collapse file tree 3 files changed +2
-58
lines changed Expand file tree Collapse file tree 3 files changed +2
-58
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ optional = []
26
26
27
27
[dependency-groups ]
28
28
testing = [
29
- " pytest" ,
29
+ " pytest @ git+https://github.com/karlicoss/pytest@pyargs-namespace-packages" ,
30
+ # "pytest",
30
31
" ruff" ,
31
32
" mypy" ,
32
33
" lxml" , # for mypy html coverage
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ def fixture() -> Iterator[Path]:
36
36
with TemporaryDirectory () as td :
37
37
root = Path (td )
38
38
shutil .copy (GIT_ROOT / 'pytest.ini' , root / 'pytest.ini' )
39
- shutil .copy (GIT_ROOT / 'conftest.py' , root / 'conftest.py' )
40
- # TODO overwrite consider namesspace pkgs here for now??
41
39
shutil .copytree (THISDIR / 'testdata' / 'src' , root / 'src' )
42
40
with contextlib_chdir (root ):
43
41
yield root
You can’t perform that action at this time.
0 commit comments