File tree Expand file tree Collapse file tree 1 file changed +10
-18
lines changed Expand file tree Collapse file tree 1 file changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -5,36 +5,28 @@ matrix:
5
5
# Linux Python 2
6
6
- sudo : required
7
7
language : python
8
- python : " 2.7"
9
- services :
10
- - docker
11
- env :
12
- - " PYTHON=python"
8
+ python : 2.7
9
+ services : docker
10
+ env : PYTHON=python
13
11
14
12
# Linux Python 3
15
13
- sudo : required
16
14
language : python
17
- python : " 3.4"
18
- services :
19
- - docker
20
- env :
21
- - " PYTHON=python"
15
+ python : 3.4
16
+ services : docker
17
+ env : PYTHON=python
22
18
23
19
# macOS Python 2
24
20
- os : osx
25
- env :
26
- - " PYTHON=python2"
21
+ env : PYTHON=python2
27
22
28
23
# macOS Python 3
29
24
- os : osx
30
- env :
31
- - " PYTHON=python3"
25
+ env : PYTHON=python3
32
26
before_install :
33
27
- brew update
34
28
- brew outdated python || brew upgrade python
35
29
36
- install :
37
- - $PYTHON -m pip install -r requirements-dev.txt
30
+ install : $PYTHON -m pip install -r requirements-dev.txt
38
31
39
- script :
40
- - $PYTHON ./bin/run_tests.py
32
+ script : $PYTHON ./bin/run_tests.py
You can’t perform that action at this time.
0 commit comments