File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change
1
+ dist : xenial
1
2
language : python
2
3
3
4
# Travis CI has no plans to support Jython and no longer supports Python 2.5.
@@ -10,10 +11,38 @@ python:
10
11
- " 3.9-dev"
11
12
- " nightly"
12
13
14
+ matrix :
15
+ fast_finish : true
16
+ include :
17
+ - os : osx
18
+ # osx is goofy, ``python`` is always py2, images mutate fast
19
+ language : shell
20
+ before_install :
21
+ - pip3 install --upgrade pip wheel
22
+ install :
23
+ - python3 setup.py install
24
+ script :
25
+ - pystache-test . ext/spec/specs
26
+ - os : windows
27
+ # windows is even goofier, install path is different for python/python3
28
+ # but either way you get python3 and the cmd is always ``python`` o.O
29
+ # (also versions mutuate like bacteria)
30
+ language : shell
31
+ before_install :
32
+ - choco install python3 --params "/InstallDir:C:\\Python"
33
+ - python -m pip install --upgrade pip wheel
34
+ env : PATH="/c/Python:/c/Python/Scripts:$PATH"
35
+ install :
36
+ - python setup.py install
37
+ script :
38
+ - pystache-test . ext/spec/specs
39
+ allow_failures :
40
+ - python : " nightly"
13
41
14
42
# command to install dependencies
15
43
install :
16
- - pip install tox-travis codecov
44
+ - pip install --upgrade pip
45
+ - pip install codecov
17
46
18
47
script :
19
48
- python setup.py install
You can’t perform that action at this time.
0 commit comments