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 97ad1f7 commit 881ba65Copy full SHA for 881ba65
src/pytest_plugins/test_filler/test_filler.py
@@ -592,7 +592,7 @@ def create_tarball(
592
with tarfile.open(tarball_filename, "w:gz") as tar:
593
for file in source_dir.rglob("*"):
594
if file.suffix in {".json", ".ini"}:
595
- arcname = file.relative_to(source_dir.parent)
+ arcname = Path("fixtures") / file.relative_to(source_dir)
596
tar.add(file, arcname=arcname)
597
598
0 commit comments