Skip to content

Commit c0beb4e

Browse files
authored
Merge pull request #34 from cclauss/patch-3
Add Python 2.7 and 3.6 to the testing and flake8 as well
2 parents 16a3dbf + f582386 commit c0beb4e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

circle.yml

Lines changed: 12 additions & 3 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,6 +10,12 @@ general:
710
- master
811
- old_master
912
test:
10-
override:
11-
- python -m unittest discover test_replays
12-
- 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

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
hacking
12
Pillow

0 commit comments

Comments
 (0)