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
There are a few points that would be useful to make for new developers regarding the testing protocol.
The inclusion of the pytest-xdist package in test.yml gives the impression that tests can be run in parallel, which appears only be true for the unit tests, not the integration tests. This leads to a wall of errors that could lead to:
interruption of the tests doesn't cleanly remove containers/volumes/networks. Rerunning the tests creates duplicate docker networks that will cause many future tests to fail. There needs to be a few sentences on resolving this duplication problem.
The text was updated successfully, but these errors were encountered:
There are a few points that would be useful to make for new developers regarding the testing protocol.
pytest-xdist
package intest.yml
gives the impression that tests can be run in parallel, which appears only be true for the unit tests, not the integration tests. This leads to a wall of errors that could lead to:The text was updated successfully, but these errors were encountered: