forked from ethereum/eth-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (53 loc) · 1.12 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
sudo: false
language: python
dist: trusty
matrix:
include:
#
# Python 3.5 testing
#
# lint
- python: "3.5"
env: TOX_POSARGS="-e lint"
# doctest
- python: "3.5"
env: TOX_POSARGS="-e doctest"
# core
- python: "3.5"
env: TOX_POSARGS="-e py35-core"
# backends
- python: "3.5"
env: TOX_POSARGS="-e py35-backend-pycryptodomex"
- python: "3.5"
env: TOX_POSARGS="-e py35-backend-pysha3"
#
# Python 3.6 testing
#
# core
- python: "3.6"
env: TOX_POSARGS="-e py36-core"
# backends
- python: "3.6"
env: TOX_POSARGS="-e py36-backend-pycryptodomex"
- python: "3.6"
env: TOX_POSARGS="-e py36-backend-pysha3"
#
# pypy3 testing
#
# core
- python: "pypy3.5"
env: TOX_POSARGS="-e pypy3-core"
# backends
- python: "pypy3.5"
env: TOX_POSARGS="-e pypy3-backend-pycryptodomex"
cache:
- pip: true
install:
- travis_retry pip install pip setuptools --upgrade
- travis_retry pip install tox
before_script:
- python --version
- pip --version
- pip freeze
script:
- tox $TOX_POSARGS