forked from ammaraskar/pyCraft
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (34 loc) · 705 Bytes
/
Copy path.travis.yml
File metadata and controls
36 lines (34 loc) · 705 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
language: python
dist: focal
python: 3.9
matrix:
include:
- python: pypy3
env: TOX_ENV=pypy
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py36
- python: 3.7
env: TOX_ENV=py37
- python: 3.8
env: TOX_ENV=py38
- python: 3.9
env: TOX_ENV=py39
- python: 3.9
env: TOX_ENV=flake8
- python: 3.9
env: TOX_ENV=pylint-errors
- python: 3.9
env: TOX_ENV=pylint-full
- python: 3.9
env: TOX_ENV=verify-manifest
install:
- pip install tox
- pip install python-coveralls
script:
- tox -e $TOX_ENV
after_script:
- if [ "$TOX_ENV" = "py39" ]; then tox -e coveralls; fi
notifications:
email: false