We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515145a commit 5639f8dCopy full SHA for 5639f8d
conftest.py
pyproject.toml
@@ -26,7 +26,8 @@ optional = []
26
27
[dependency-groups]
28
testing = [
29
- "pytest",
+ "pytest @ git+https://github.com/karlicoss/pytest@pyargs-namespace-packages",
30
+ # "pytest",
31
"ruff",
32
"mypy",
33
"lxml", # for mypy html coverage
tests/test_pytest.py
@@ -36,8 +36,6 @@ def fixture() -> Iterator[Path]:
36
with TemporaryDirectory() as td:
37
root = Path(td)
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
shutil.copytree(THISDIR / 'testdata' / 'src', root / 'src')
42
with contextlib_chdir(root):
43
yield root
0 commit comments