Skip to content
Prev Previous commit
Next Next commit
lists cannot be merged ... my YAML foo is weak :-(
  • Loading branch information
Dominik Neise committed Jun 27, 2019
commit 4a005ebaa4f8eee250dbf7938dae2a433342a538
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ my-steps: &steps
- run: python -m unittest discover test_s2gs
- run: python -m unittest discover test_replays

black_check: &black_check_steps
- run: pip install black
- run: black . --check

jobs:
Python2:
docker:
Expand All @@ -23,9 +27,8 @@ jobs:
docker:
- image: circleci/python:3.7
steps:
<< : *steps
- run: pip install black
- run: black . --check
- *steps
- *black_check_steps

workflows:
version: 2
Expand Down