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 e8498e4 commit bb84077Copy full SHA for bb84077
src/pytest_codspeed/plugin.py
@@ -300,6 +300,9 @@ def pytest_sessionfinish(session: pytest.Session, exitstatus):
300
if plugin.profile_folder:
301
result_path = plugin.profile_folder / "results" / f"{os.getpid()}.json"
302
else:
303
+ # Default to a .codspeed folder in the root of the project.
304
+ # Storing the results will be later used for features such as
305
+ # local comparison between runs.
306
result_path = (
307
session.config.rootpath / f".codspeed/results_{time() * 1000:.0f}.json"
308
)
0 commit comments