Skip to content

Commit f582386

Browse files
author
cclauss
authored
Add Python 2.7 and 3.6 to the testing and flake8 as well
1 parent e51c262 commit f582386

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

circle.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
machine:
2+
post:
3+
- pyenv global 2.7.13 3.6.2
14
general:
25
branches:
36
ignore:
@@ -7,8 +10,12 @@ general:
710
- master
811
- old_master
912
test:
10-
override:
11-
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
12-
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
13-
- python -m unittest discover test_replays
14-
- python -m unittest discover test_s2gs
13+
override:
14+
- python2.7 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
15+
- python2.7 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
16+
- python2.7 -m python -m unittest discover test_replays
17+
- python2.7 -m python -m unittest discover test_s2gs
18+
- python3.6 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
19+
- python3.6 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
20+
- python3.6 -m python -m unittest discover test_replays
21+
- python3.6 -m python -m unittest discover test_s2gs

0 commit comments

Comments
 (0)