Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down