forked from ethereum/eth-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (37 loc) · 886 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: python
python:
- "3.5"
matrix:
include:
# lint
- python: "3.5"
env: TOX_POSARGS="-e flake8"
# core
- python: "3.5"
env: TOX_POSARGS="-e py35-core"
- python: "3.6"
env: TOX_POSARGS="-e py36-core"
# pyethereum 1.6.x
- python: "3.5"
env: TOX_POSARGS="-e py35-pyethereum16"
- python: "3.6"
env: TOX_POSARGS="-e py36-pyethereum16"
# pyethereum 2.0.0+
- python: "3.5"
env: TOX_POSARGS="-e py35-pyethereum21"
- python: "3.6"
env: TOX_POSARGS="-e py36-pyethereum21"
# pyevm
- python: "3.5"
env: TOX_POSARGS="-e py35-pyevm"
- python: "3.6"
env: TOX_POSARGS="-e py36-pyevm"
cache:
pip: true
install:
- "travis_retry pip install pip setuptools --upgrade"
- "travis_retry pip install tox"
script:
- tox $TOX_POSARGS
after_script:
- cat .tox/$TOX_POSARGS/log/*.log