forked from dvolgyes/zenodo_get
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (31 loc) · 761 Bytes
/
.travis.yml
File metadata and controls
38 lines (31 loc) · 761 Bytes
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
language: python
matrix:
fast_finish: true
include:
- os: linux
dist: bionic
sudo: required
python: 3.6
- os: linux
dist: bionic
sudo: required
python: 3.7
- os: linux
dist: bionic
sudo: required
python: 3.8
- os: linux
dist: bionic
sudo: required
python: nightly
install:
- pip install --upgrade pip setuptools wheel
- pip install coveralls codecov pyflakes
- pip install -r requirements.txt
- python3 -m coverage run -a --source . setup.py install
- pip install git+https://github.com/dvolgyes/zenodo_get
script:
- tests/test.sh
after_success:
- coveralls
- codecov