We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The unit test suite currently takes about 2.5 seconds to run on my machine. Shave as much time off as possible.
Time boxed to 1 day. @mssalvatore (0.25d)
A set of code changes that result in a faster unit test execution time.
test_is_dead()
time
pytest-xdist
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Spike
Objective
The unit test suite currently takes about 2.5 seconds to run on my machine. Shave as much time off as possible.
Scope
Time boxed to 1 day. @mssalvatore (0.25d)
Output
A set of code changes that result in a faster unit test execution time.
Areas of investigation
test_is_dead()
test has a 1 second sleep in it.time
instead of actually waiting in real time.pytest-xdist
to run tests in parallel.The text was updated successfully, but these errors were encountered: