diff --git a/CHANGELOG.md b/CHANGELOG.md index 892efc3af..5c04d6674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ This version is pinned strictly to `b2-sdk-python==1.17.3` for the same reason. * Try not to crash tests due to bucket name collision * Fix replication integration tests * Fix leaking buckets in integration tests -* Limit number of workers for integration tests to 1 for now +* Fix parallel integration tests * Make integration tests remove buckets only based on name, not based on creation time * Add dependabot configuration diff --git a/noxfile.py b/noxfile.py index 110f84115..62589f297 100644 --- a/noxfile.py +++ b/noxfile.py @@ -156,8 +156,7 @@ def integration(session): """Run integration tests.""" install_myself(session) session.install(*REQUIREMENTS_TEST) - #session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration') - session.run('pytest', '-s', '-x', '-v', *session.posargs, 'test/integration') + session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration') @nox.session(python=PYTHON_VERSIONS)