forked from ggtracker/sc2reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
27 lines (27 loc) · 953 Bytes
/
circle.yml
File metadata and controls
27 lines (27 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
machine:
post:
- pyenv global 2.7.12 3.6.2
dependencies:
pre:
- pip install --upgrade pip
- pip3 install --upgrade pip
- pip install hacking
- pip3 install hacking
general:
branches:
ignore:
- ggmaster
- hots
- jonomon
- master
- old_master
test:
override:
- python2.7 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- python2.7 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python2.7 -m python -m unittest discover test_replays
- python2.7 -m python -m unittest discover test_s2gs
- python3.6 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- python3.6 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python3.6 -m python -m unittest discover test_replays
- python3.6 -m python -m unittest discover test_s2gs