This repository was archived by the owner on May 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +25
-7
lines changed Expand file tree Collapse file tree 2 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,20 @@ before_install:
9
9
env :
10
10
matrix :
11
11
- TOX_ENV=py27
12
+ - TOX_ENV=py34
13
+ - TOX_ENV=py35
14
+ - TOX_ENV=coverage
12
15
global :
13
16
secure : cKbIgpTJ1yjKLBxpCEiT6IH7NShDWZUE+BvnrAfc+ujCsR6LyLJcKxFQmKnWryJCqg7fp82Ep2bF2oDKzanAROar2xDY1SFGbai42seYMaFCw53YPGJ6u3VNCcfT0rN9BWgE7el/m4fjcD6CRsZYKArNNJbMX8csRt3uXXCFLso=
14
17
install :
15
- - pip install -Ur requirements.txt
16
- - pip install -Ur dev_requirements.txt
18
+ - " travis_retry pip install setuptools --upgrade "
19
+ - " travis_retry pip install tox "
17
20
script :
18
21
- coverage run --source ethereum -m py.test --ignore ethereum/tests/test_vm.py --ignore ethereum/tests/test_state.py
19
22
- coverage run --append --source ethereum -m py.test ethereum/tests/test_vm.py
20
23
- coverage run --append --source ethereum -m py.test ethereum/tests/test_state.py
24
+ script :
25
+ - tox -e $TOX_ENV
21
26
after_success :
22
27
- coveralls
23
28
notifications :
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py27,coverage
2
+ envlist =
3
+ py27,
4
+ py34,
5
+ py35,
6
+ coverage
3
7
4
8
5
9
[testenv]
6
- setenv =
7
- PYTHONPATH = {toxinidir}:{toxinidir}/ethereum
8
- commands = coverage run --source =ethereum --branch -m py.test {posargs}
10
+ commands =
11
+ coverage run --source ethereum -m py.test --ignore ethereum/tests/test_vm.py --ignore ethereum/tests/test_state.py
12
+ coverage run --append --source ethereum -m py.test ethereum/tests/test_vm.py
13
+ coverage run --append --source ethereum -m py.test ethereum/tests/test_state.py
9
14
deps =
10
- -r{toxinidir}/requirements.txt
11
15
-r{toxinidir}/dev_requirements.txt
12
16
17
+ [testenv:py27]
18
+ basepython =python2.7
19
+
20
+ [testenv:py34]
21
+ basepython =python3.4
22
+
23
+ [testenv:py35]
24
+ basepython =python3.5
25
+
13
26
14
27
[testenv:coverage]
15
28
deps =
You can’t perform that action at this time.
0 commit comments