-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
executable file
·72 lines (67 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
71
72
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
sudo: false
matrix:
include:
- os: linux
python: 3.6
env:
- TOXENV=pylint
- os: linux
python: 3.6
env:
- TOXENV=flake8
#- os: linux
# python: 3.6
# env:
# - TOXENV=bandit
- os: linux
python: 3.6
env:
- TOXENV=readme
- os: linux
python: 2.7
env:
- TOXENV=short
- os: linux
python: 3.4
env:
- TOXENV=short
- os: linux
python: 3.5
env:
- TOXENV=short
- os: linux
python: 3.6
env:
- TOXENV=py36short
- BUILD_LINUX=yes
- os: osx
osx_image: xcode9.3
language: objective-c
env:
- TRAVIS_PYTHON_VERSION=3.6
- TOXENV=short
cache: pip
before_install:
- uname -a
- df -h
- ulimit -a
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source util/travis_osx_install.sh; fi
- ccache -s
- which python; python --version
- pip install --upgrade pip
- pip install --upgrade wheel
# Set numpy version first, other packages link against it
- pip install six nose coverage codecov tox-travis pytest pytest-cov coveralls codacy-coverage parameterized secp256k1 cryptography scrypt
- pip install pycryptodomex pyyaml appdirs pylibscrypt
- pip install ecdsa requests future websocket-client pytz six Click events prettytable
script:
- tox
after_success:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash util/package-osx.sh; fi
- if [[ "$BUILD_LINUX" == "yes" ]]; then bash util/package-linux.sh; fi
- coveralls
# - codecov
# - python-codacy-coverage -r coverage.xml