Skip to content

Commit 7eb3ba7

Browse files
Re-enable pytest-xdist for integration tests
1 parent 8e9ac6f commit 7eb3ba7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
* Fix running tests on the CI with the latest SDK from the master branch
2727
* Fix bucket leaks in integration tests
2828
* Allow only one CI workflow at a time
29+
* Re-enable pytest-xdist for integration tests
2930

3031
## [3.5.0] - 2022-07-27
3132

noxfile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,9 @@ def integration(session):
174174
"""Run integration tests."""
175175
install_myself(session)
176176
session.run('pip', 'install', *REQUIREMENTS_TEST)
177-
#session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration')
178177
session.run(
179-
'pytest', '-s', '-x', '-v', '-W', 'ignore::DeprecationWarning:rst2ansi.visitor:',
180-
*session.posargs, 'test/integration'
178+
'pytest', '-s', '-x', '-v', '-n', 'auto', '-W',
179+
'ignore::DeprecationWarning:rst2ansi.visitor:', *session.posargs, 'test/integration'
181180
)
182181

183182

0 commit comments

Comments
 (0)