When files contain more than one snapshot, ./manage.py test --parallel
causes a race condition
#56
Labels
./manage.py test --parallel
causes a race condition
#56
When tests are run in parallel, snapshottest writes the resulting snapshot to a file based on the name of the python source file. For example,
test_something.py
results insnap_test_something.py
. This however seems to lead to race conditions when a file contains more then one snapshot test and tests are run in parallel using./manage.py test --parallel 4
which has different resulting snapshots then when running./manage.py test
.The text was updated successfully, but these errors were encountered: