Skip to content

Commit 94a953e

Browse files
Enable 4 parallel workers for integration tests
1 parent 89f4fdf commit 94a953e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This version is pinned strictly to `b2-sdk-python==1.17.3` for the same reason.
1919
* Try not to crash tests due to bucket name collision
2020
* Fix replication integration tests
2121
* Fix leaking buckets in integration tests
22-
* Limit number of workers for integration tests to 1 for now
22+
* Fix parallel integration tests
2323
* Make integration tests remove buckets only based on name, not based on creation time
2424
* Add dependabot configuration
2525

noxfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,7 @@ def integration(session):
156156
"""Run integration tests."""
157157
install_myself(session)
158158
session.install(*REQUIREMENTS_TEST)
159-
#session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration')
160-
session.run('pytest', '-s', '-x', '-v', *session.posargs, 'test/integration')
159+
session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration')
161160

162161

163162
@nox.session(python=PYTHON_VERSIONS)

0 commit comments

Comments
 (0)