forked from rm-hull/luma.emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (36 loc) · 931 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
dist: bionic
language: python
cache: pip
matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.9-dev
env: TOXENV=py39
- python: 3.8
env: TOXENV=qa,doc
allow_failures:
- python: "3.9-dev"
addons:
apt:
packages:
- graphviz
- libsdl-dev
- python3-dev
- python3-numpy
- libsdl-image1.2-dev
- libsdl-mixer1.2-dev
- libsdl-ttf2.0-dev
- libsmpeg-dev
- libportmidi-dev
- libavformat-dev
- libswscale-dev
- libjpeg-dev
- libfreetype6-dev
install: pip install --upgrade --ignore-installed setuptools pip tox coveralls
script: tox -vv
after_success: if [ "$TOXENV" == "py38" ]; then coveralls; fi