File tree 1 file changed +47
-9
lines changed
1 file changed +47
-9
lines changed Original file line number Diff line number Diff line change 1
- os :
2
- - linux
3
- - osx
1
+ # os:
2
+ # - linux
3
+ # - osx
4
4
sudo : required
5
+ # Manually install python on osx
6
+
7
+ # matrix:
8
+ # language: python
9
+ # python:
10
+ # - 2.6
11
+ # - 2.7
12
+ # - 3.2
13
+ # - 3.4
14
+ # - 3.5
15
+
5
16
language : python
6
- python :
7
- - 2.6
8
- - 2.7
9
- - 3.2
10
- - 3.4
11
- - 3.5
17
+
18
+ matrix :
19
+ include :
20
+ - os : linux
21
+ # sudo: required
22
+ python : 2.7
23
+ env : TOXENV=py27
24
+ - os : linux
25
+ python : 3.3
26
+ env : TOXENV=py33
27
+ - os : linux
28
+ python : 3.4
29
+ env : TOXENV=py34
30
+ - os : linux
31
+ python : 3.5
32
+ env : TOXENV=py35
33
+ - os : osx
34
+ language : generic
35
+ env : TOXENV=py27
36
+ - os : osx
37
+ language : generic
38
+ env : TOXENV=py33
39
+ - os : osx
40
+ language : generic
41
+ env : TOXENV=py34
42
+ - os : osx
43
+ language : generic
44
+ env : TOXENV=py35
45
+
12
46
before_install :
13
47
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe"
14
48
- sudo apt-get install software-properties-common
@@ -19,9 +53,13 @@ before_install:
19
53
- sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" install mono-devel mono-complete referenceassemblies-pcl ca-certificates-mono nunit-console
20
54
21
55
install :
56
+ # - ./.travis/install.sh
57
+ - pip install tox
58
+ - pip install tox-travis
22
59
- pip install six
23
60
- pip install pycparser
24
61
- python setup.py build_ext --inplace
25
62
script :
63
+ - tox
26
64
- export PYTHONPATH=`pwd`:$PYTHONPATH
27
65
- python src/tests/runtests.py
You can’t perform that action at this time.
0 commit comments