Skip to content

Commit a8068fa

Browse files
author
cclauss
authored
Circle v1 only supports Python 2.7.6 and 3.5.0!!
1 parent 46e94af commit a8068fa

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

circle.yml_old_v1

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
1+
machine:
2+
post:
3+
- pyenv global 2.7 3.5.0
4+
dependencies:
5+
pre:
6+
- pip install --upgrade pip
7+
- pip3 install --upgrade pip
8+
- pip install hacking
9+
- pip3 install hacking
10+
general:
11+
branches:
12+
ignore:
13+
- ggmaster
14+
- hots
15+
- jonomon
16+
- master
17+
- old_master
18+
test:
19+
override:
20+
- python2 -V
21+
- python2 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
22+
- python2 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
23+
- python2 -m unittest discover test_replays
24+
- python2 -m unittest discover test_s2gs
25+
- python3 -V
26+
- python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
27+
- python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
28+
- python3 -m unittest discover test_replays
29+
- python3 -m unittest discover test_s2gs

0 commit comments

Comments
 (0)