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.
cov_tmp_path
1 parent 4de5664 commit 05af4deCopy full SHA for 05af4de
tests/conftest.py
@@ -31,7 +31,7 @@ def clear_sqlmodel() -> Any:
31
def cov_tmp_path(tmp_path: Path) -> Generator[Path, None, None]:
32
yield tmp_path
33
for coverage_path in tmp_path.glob(".coverage*"):
34
- coverage_destiny_path = top_level_path / coverage_path.name
+ coverage_destiny_path = top_level_path / "coverage" / coverage_path.name
35
shutil.copy(coverage_path, coverage_destiny_path)
36
37
0 commit comments