Skip to content

Commit fa216a8

Browse files
Re-enable pytest-xdist for integration tests
1 parent 17c5294 commit fa216a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Infrastructure
1010
* Fix bucket leaks in integration tests
1111
* Allow only one CI workflow at a time
12+
* Re-enable pytest-xdist for integration tests
1213

1314
## [3.6.0] - 2022-09-20
1415

noxfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,8 @@ 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:',
178+
'pytest', '-s', '-x', '-v', '-n', '4', '-W', 'ignore::DeprecationWarning:rst2ansi.visitor:',
180179
*session.posargs, 'test/integration'
181180
)
182181

0 commit comments

Comments
 (0)