You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PR #74 we reduced the test size as much as possible without affecting coverage but it still takes considerable amount of time to run the test (on my machine 70s). This can be still improved by doing one of the following things:
We could split up the test case into smaller cases to not affect coverage
We could run it concurrently using submit instead of run (even though I think this will not help so much with the CI because it only has two processes running)
The overall test time could be reduced by executing them in parallel with pytest-xdist or pytest-run-parallel (again I am not sure how much this will help with CI)
Mark it as long test so it can be turned of easily when developing
The text was updated successfully, but these errors were encountered:
In PR #74 we reduced the test size as much as possible without affecting coverage but it still takes considerable amount of time to run the test (on my machine 70s). This can be still improved by doing one of the following things:
pytest-xdist
orpytest-run-parallel
(again I am not sure how much this will help with CI)The text was updated successfully, but these errors were encountered: