1
0
mirror of https://github.com/httpie/cli.git synced 2025-06-17 00:17:45 +02:00

Parallelized tests using pytest-xdist.

This commit is contained in:
Jakub Roztocil
2014-04-24 21:36:03 +02:00
parent 3f8a000847
commit 3f63133b7c
4 changed files with 33 additions and 13 deletions

View File

@ -12,7 +12,9 @@ class PyTest(TestCommand):
self.test_suite = True
self.test_args = [
'--doctest-modules',
'./httpie', './tests'
'-n', '8',
'./httpie',
'./tests'
]
self.test_suite = True
@ -23,6 +25,7 @@ class PyTest(TestCommand):
tests_require = [
'pytest',
'pytest-xdist',
]