diff --git a/.circleci/config.yml b/.circleci/config.yml index ebc0e127..26524bd3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -75,6 +75,7 @@ jobs: command: | . venv/bin/activate flake8 ./hypha + make sort python manage.py collectstatic --noinput --verbosity=0 python manage.py check python manage.py makemigrations --check --noinput --verbosity=1 diff --git a/.travis.yml b/.travis.yml index bb0b49d2..fe289ec1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,9 @@ script: # Run python code style checks - flake8 ./hypha + # Check import sort order of Python files + - make sort + # Collect static - python manage.py collectstatic --noinput --verbosity=0