Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Circle v1 only supports Python 2.7.6 and 3.5.0!!
  • Loading branch information
cclauss authored Aug 23, 2017
commit a8068fae479ebf93a97940257dabd40f8eced77b
30 changes: 29 additions & 1 deletion circle.yml_old_v1
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@

machine:
post:
- pyenv global 2.7 3.5.0
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 -V
- python2 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- python2 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python2 -m unittest discover test_replays
- python2 -m unittest discover test_s2gs
- python3 -V
- python3 -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- python3 -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python3 -m unittest discover test_replays
- python3 -m unittest discover test_s2gs