summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-12 15:17:09 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-12 15:27:00 -0500
commit34deed3f223f80ecc63627ea7a86c7fd1593960c (patch)
tree74312f9f3fb009f60ed6cd1252f2967a46c66409 /noxfile.py
parent222be9e017ebce3c73aeddc25c47dca326f14804 (diff)
downloadrequests-cache-34deed3f223f80ecc63627ea7a86c7fd1593960c.tar.gz
Run integration tests in parallel, and combine MongoDB and GridFS tests into the same module so they get run sequentially
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/noxfile.py b/noxfile.py
index 5f1765c..753294d 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -45,7 +45,7 @@ def clean(session):
def coverage(session):
"""Run tests and generate coverage report"""
cmd_1 = f'pytest {UNIT_TESTS} -rs {XDIST_ARGS} {COVERAGE_ARGS}'
- cmd_2 = f'pytest {INTEGRATION_TESTS} -rs {COVERAGE_ARGS} --cov-append'
+ cmd_2 = f'pytest {INTEGRATION_TESTS} -rs {XDIST_ARGS} {COVERAGE_ARGS} --cov-append'
session.run(*cmd_1.split(' '))
session.run(*cmd_2.split(' '))