add stage to the CI to check the code format

This commit is contained in:
Gonçalo Valério 2020-01-28 15:51:24 +00:00
parent f53dd9b89d
commit 0c7c6f6a7a
2 changed files with 12 additions and 3 deletions

View File

@ -14,11 +14,14 @@ env:
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests using coverage, e.g. python setup.py test
script: tox -e $(echo py$TRAVIS_PYTHON_VERSION-$DJANGO_VERSION | tr -d .)
jobs:
include:
- stage: format
python: 3.7
script: black --check
after_success:
- coveralls

View File

@ -3,6 +3,12 @@
History
-------
(next version)
++++++++++++++
* Added validation for existing addresses on the signup form
0.0.2 (2020-01-08)
++++++++++++++++++