Skip to content

Commit

Permalink
Move xdist parameter to setup.cfg.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacqueswww committed Feb 26, 2019
1 parent 56f24ee commit f4da55b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -4,7 +4,7 @@ init:
python setup.py install

test:
python setup.py test --addopts "-n auto"
python setup.py test

lint:
flake8 vyper tests --ignore=E122,E124,E127,E128,E501,E731,W504
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[tool:pytest]
addopts = --cov-report term --cov-report html --cov=vyper
addopts = -n auto --cov-report term --cov-report html --cov=vyper
python_files = test_*.py
testpaths = tests

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -4,9 +4,9 @@


test_deps = [
'pytest',
'pytest-cov',
'pytest-xdist==1.26.1',
'pytest>=3.6',
'pytest-cov==2.6.1',
'pytest-xdist==1.18.1',
'py-evm==0.2.0a39',
'eth-tester==0.1.0b37',
'web3==5.0.0a6'
Expand Down

0 comments on commit f4da55b

Please sign in to comment.