Skip to content
Snippets Groups Projects

Test style in CI (but don't fail)

Merged Ethan Nelson requested to merge ci_test_style into master
1 file
+ 18
0
Compare changes
  • Side-by-side
  • Inline
+ 18
0
image: python:3.7
stages:
- test
- formatting
- deploy
test:
stage: test
tags: ["docker"]
@@ -7,6 +12,19 @@ test:
- pip install -e ".[testing]" -i https://iweb1.sips/eggs --trusted-host iweb1.sips
- py.test -xv
formatting:
stage: formatting
tags:
- docker
allow_failure: true
only:
- branches
except:
- master
script:
- pip install black
- black --diff --check edosl0util
sdist:
stage: deploy
only:
Loading