summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/noxfile.py b/noxfile.py
index 93f6cbc..e852294 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -35,9 +35,9 @@ XDIST_ARGS = '--numprocesses=auto --dist=loadfile'
def test(session):
"""Run tests in a separate virtualenv per python version"""
test_paths = session.posargs or [UNIT_TESTS, INTEGRATION_TESTS]
- session.install('.', 'pytest', 'pytest-xdist', 'requests-mock', 'timeout-decorator')
+ session.install('.', 'pytest', 'pytest-xdist', 'requests-mock', 'rich', 'timeout-decorator')
- cmd = f'pytest -rs -x {XDIST_ARGS}'
+ cmd = f'pytest -rs {XDIST_ARGS}'
session.run(*cmd.split(' '), *test_paths)