Skip to content
Snippets Groups Projects
Commit 65697d9d authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Move the static file collection up to ensure that the other checks dont error

parent a3161b41
No related branches found
No related tags found
No related merge requests found
...@@ -63,15 +63,15 @@ script: ...@@ -63,15 +63,15 @@ script:
# Type check the project # Type check the project
- mypy . - mypy .
# Collect static
- python manage.py collectstatic --noinput --verbosity=0
# Run system checks # Run system checks
- python manage.py check - python manage.py check
# Check for missing migrations # Check for missing migrations
- python manage.py makemigrations --check --noinput --verbosity=0 - python manage.py makemigrations --check --noinput --verbosity=0
# Collect static
- python manage.py collectstatic --noinput --verbosity=0
# Run tests # Run tests
- coverage run --source='.' manage.py test . - coverage run --source='.' manage.py test .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment