-
Notifications
You must be signed in to change notification settings - Fork 35
/
.travis.yml
40 lines (35 loc) · 898 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
38
39
40
language: python
jobs:
include:
- os: linux
arch: arm64
python: 3.7
- os: linux
arch: ppc64le
python: 3.7
- os: linux
dist: xenial
python: 3.5
- os: linux
dist: xenial
python: 3.6
- os: linux
dist: xenial
python: 3.7
- os: linux
dist: xenial
python: 3.8
notifications:
email: false
# Install packages
install:
- travis_retry python -m pip install --upgrade pip
- travis_retry pip install cython
- travis_retry pip install paq lzss coveralls -r requirements.txt -r requirements-test.txt
- travis_retry python setup.py install
# Run test
script:
- nosetests --verbose --with-coverage --cover-erase --cover-branches --cover-package=abydos --logging-level=INFO --process-timeout=60 --process-restartworker
# Calculate coverage
after_success:
- coveralls --verbose --rcfile=.coveragerc