summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-06-11 19:25:55 -0500
committerJordan Cook <jordan.cook@pioneer.com>2022-06-11 19:33:54 -0500
commitc0fc3079c7db0b8d744062e79342613fc8be9367 (patch)
tree2e2278845da741b34973324df54debf42ead5c1e /noxfile.py
parentd04cc094efb44586dd996e6a0554dec99f7d40c6 (diff)
downloadrequests-cache-c0fc3079c7db0b8d744062e79342613fc8be9367.tar.gz
Update tests and docs
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)