Skip to content

Commit 4e2ed7f

Browse files
committed
Use standardized name for integration test working folder
No functional change, and neither is necessarily superior, but this is how it is in the "template", and so it must be here as well.
1 parent 6b86f93 commit 4e2ed7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,6 @@ def working_dir(tmpdir_factory) -> str:
122122
"""Create a temporary folder for the test to run in. It will be created before running each test and deleted at the
123123
end. This way all the tests work in isolation.
124124
"""
125-
work_dir = tmpdir_factory.mktemp(basename="TestWorkingDir")
125+
work_dir = tmpdir_factory.mktemp(basename="IntegrationTestWorkingDir")
126126
yield os.path.realpath(work_dir)
127127
shutil.rmtree(work_dir, ignore_errors=True)

0 commit comments

Comments
 (0)