Skip to content

Commit 1f6c7f7

Browse files
author
cclauss
authored
Update circle.yml
1 parent a809965 commit 1f6c7f7

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
lines changed

circle.yml

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
version: 2
22
jobs:
3-
Python3:
4-
build:
5-
working_directory: ~/sc2reader
6-
docker:
7-
- image: python:3.6.2
8-
branches:
9-
ignore:
10-
- ggmaster
11-
- hots
12-
- jonomon
13-
- master
14-
- old_master
15-
steps:
16-
- checkout
17-
- run:
18-
name: Flake8 and unittests on Python 3.6.2
19-
command: |
20-
python -m venv venv
21-
. venv/bin/activate
22-
pwd
23-
python -V
24-
pip -V
25-
pip install hacking Pillow
26-
python -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
27-
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
28-
python -m unittest discover test_replays
29-
python -m unittest discover test_s2gs
30-
Python2:
31-
build:
32-
# working_directory: ~/sc2reader
33-
docker:
34-
- image: python:2.7.13
35-
branches:
36-
ignore:
37-
- ggmaster
38-
- hots
39-
- jonomon
40-
- master
41-
- old_master
42-
steps:
43-
- checkout
44-
- run:
45-
name: Flake8 and unittests on Python 2.7.13
46-
command: |
47-
# pip install virtualenv
48-
# virtualenv sc2reader
49-
# pwd
50-
# ls
51-
# cd sc2reader
52-
# source bin/activate
53-
pwd
54-
ls
55-
python -V
56-
pip -V
57-
pip install hacking Pillow
58-
echo "Flake8 round one"
59-
python -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
60-
echo "Flake8 round two"
61-
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
62-
echo "Unittest round one"
63-
python -m unittest discover test_replays
64-
echo "Unittest round two"
65-
python -m unittest discover test_s2gs
66-
echo "Done."
3+
Python3:
4+
build:
5+
working_directory: ~/sc2reader
6+
docker:
7+
- image: python:3.6.2
8+
branches:
9+
ignore:
10+
- ggmaster
11+
- hots
12+
- jonomon
13+
- master
14+
- old_master
15+
steps:
16+
- checkout
17+
- run:
18+
name: Flake8 and unittests on Python 3.6.2
19+
command: |
20+
python -m venv venv
21+
. venv/bin/activate
22+
pwd
23+
python -V
24+
pip -V
25+
pip install hacking Pillow
26+
python -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
27+
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
28+
python -m unittest discover test_replays
29+
python -m unittest discover test_s2gs
30+
Python2:
31+
build:
32+
# working_directory: ~/sc2reader
33+
docker:
34+
- image: python:2.7.13
35+
branches:
36+
ignore:
37+
- ggmaster
38+
- hots
39+
- jonomon
40+
- master
41+
- old_master
42+
steps:
43+
- checkout
44+
- run:
45+
name: Flake8 and unittests on Python 2.7.13
46+
command: |
47+
# pip install virtualenv
48+
# virtualenv sc2reader
49+
# pwd
50+
# ls
51+
# cd sc2reader
52+
# source bin/activate
53+
pwd
54+
ls
55+
python -V
56+
pip -V
57+
pip install hacking Pillow
58+
echo "Flake8 round one"
59+
python -m flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
60+
echo "Flake8 round two"
61+
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
62+
echo "Unittest round one"
63+
python -m unittest discover test_replays
64+
echo "Unittest round two"
65+
python -m unittest discover test_s2gs
66+
echo "Done."

0 commit comments

Comments
 (0)