We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f2cb8 commit f20ff8aCopy full SHA for f20ff8a
2 files changed
Makefile
@@ -1,2 +1,2 @@
1
test:
2
- uv run tox run-parallel -e py312, subtests
+ uv run tox run-parallel -e py312,subtests
tests/test_subtests.py
@@ -40,8 +40,9 @@ def test_subtests(subtests):
40
assert i % 2 == 0
41
"""
42
)
43
- testdir.runpytest_subprocess("--tap-combined")
44
- testresults = testdir.tmpdir.join("testresults.tap")
+ testdir.runpytest_subprocess("--tap-outdir", "subtest-results", "--tap-combined")
+ outdir = testdir.tmpdir.join("subtest-results")
45
+ testresults = outdir.join("testresults.tap")
46
assert testresults.check()
47
actual_results = [
48
line.strip() for line in testresults.readlines() if not line.startswith("#")
0 commit comments