We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a067282 commit 745de2dCopy full SHA for 745de2d
Makefile
@@ -6,6 +6,7 @@ RELEASEDIR = $(PROJECTNAME)-$(VERSION).$(RELEASE)
6
EGGINFODIR = $(PROJECTNAME).egg-info
7
DOCDIR = doc
8
COVDIR = htmlcov
9
+TEST_THREADS ?= 4
10
11
DOC_URL=http://alleninstitute.github.io/AllenSDK
12
#ZIP_FILENAME=AllenSDK-master.zip
@@ -38,7 +39,7 @@ pypi_deploy:
38
39
python setup.py sdist upload --repository https://testpypi.python.org/pypi
40
41
pytest_lax:
- py.test -s --boxed --cov=allensdk --cov-config coveragerc --cov-report html --junitxml=test-reports/test.xml
42
+ py.test -s --boxed --cov=allensdk --cov-config coveragerc --cov-report html --junitxml=test-reports/test.xml -n $(TEST_THREADS) --durations=0
43
44
pytest: pytest_lax
45
0 commit comments