diff --git a/CHANGELOG.md b/CHANGELOG.md index 436f9aebd..3a951f133 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Infrastructure * Fix bucket leaks in integration tests * Allow only one CI workflow at a time +* Re-enable pytest-xdist for integration tests ## [3.6.0] - 2022-09-20 diff --git a/noxfile.py b/noxfile.py index aaa2bac3d..33fd89c9c 100644 --- a/noxfile.py +++ b/noxfile.py @@ -174,9 +174,8 @@ def integration(session): """Run integration tests.""" install_myself(session) session.run('pip', 'install', *REQUIREMENTS_TEST) - #session.run('pytest', '-s', '-x', '-v', '-n', '4', *session.posargs, 'test/integration') session.run( - 'pytest', '-s', '-x', '-v', '-W', 'ignore::DeprecationWarning:rst2ansi.visitor:', + 'pytest', '-s', '-x', '-v', '-n', '4', '-W', 'ignore::DeprecationWarning:rst2ansi.visitor:', *session.posargs, 'test/integration' )