As we want to use system python.
... | ... |
@@ -1,14 +1,7 @@ |
1 |
-# Use trusty for newer graphviz |
|
2 | 1 |
sudo: required |
3 |
-# https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch |
|
4 |
-group: deprecated-2017Q2 |
|
5 | 2 |
dist: trusty |
6 | 3 |
|
7 |
-language: python |
|
8 |
- |
|
9 |
-python: |
|
10 |
-# https://github.com/travis-ci/travis-ci/issues/2219 |
|
11 |
-- "3.4_with_system_site_packages" |
|
4 |
+language: generic |
|
12 | 5 |
|
13 | 6 |
addons: |
14 | 7 |
apt: |
... | ... |
@@ -21,10 +14,11 @@ addons: |
21 | 14 |
|
22 | 15 |
before_install: |
23 | 16 |
- dot -V |
17 |
+- /usr/bin/python3 --version |
|
24 | 18 |
|
25 | 19 |
script: |
26 | 20 |
- cd tests |
27 |
-- LANG=C xvfb-run -a -s '-screen 0 1024x768x24' python ../test.py *.dot graphs/*.gv |
|
21 |
+- LANG=C xvfb-run -a -s '-screen 0 1024x768x24' /usr/bin/python3 ../test.py *.dot graphs/*.gv |
|
28 | 22 |
- cd .. |
29 | 23 |
|
30 | 24 |
# https://docs.travis-ci.com/user/deployment/pypi/ |