Skip to content

Commit

Permalink
Merge pull request #380 from jdufresne/checks
Browse files Browse the repository at this point in the history
Add additional verification checks to Travis CI
  • Loading branch information
kimarakov committed Jan 4, 2018
2 parents 8ac3b66 + a4ebc4c commit 99e183d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ install:
before_script:
- flake8
- isort --check-only --diff
- python -m django check --settings=tests.settings
- python -m django makemigrations --settings=tests.settings --no-input --dry-run --check
script:
- coverage run -m django test --settings=tests.settings
- coverage report -m
Expand Down
1 change: 1 addition & 0 deletions tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}

Expand Down

0 comments on commit 99e183d

Please sign in to comment.