Skip to content

Commit ceb4b59

Browse files
author
Dominik Neise
committed
run black --check
1 parent 06a7958 commit ceb4b59

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ version: 2.0
33
my-steps: &steps
44
- checkout
55
- run: sudo pip install -r requirements.txt
6-
- run: sudo pip install flake8 pytest
6+
- run: sudo pip install flake8 pytest black
77
- run: python --version ; pip --version ; pwd ; ls -l
88
# stop the build if there are Python syntax errors or undefined names
99
- run: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
1010
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
1111
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
12+
- run: black . --check
1213
#- run: pytest # test_s2gs test_replays
1314
- run: python -m unittest discover test_s2gs
1415
- run: python -m unittest discover test_replays

0 commit comments

Comments
 (0)