Skip to content

Commit

Permalink
Re-enable pytest-xdist for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mlesniewski-reef committed Sep 21, 2022
1 parent 17c5294 commit fa216a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

Expand Down

0 comments on commit fa216a8

Please sign in to comment.