Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
machine:
post:
- pyenv global 2.7.12 3.6.2
- pyenv global 2.7 # 3.4.4

dependencies:
pre:
- pip install --upgrade pip
- pip3 install --upgrade pip
# - pip3 install --upgrade pip
- pip install hacking
- pip3 install hacking
# - pip3 install hacking

general:
branches:
ignore:
Expand All @@ -17,11 +19,11 @@ general:
- 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
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python -m unittest discover test_replays
- 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