-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Merlin Buczek
committed
May 3, 2019
1 parent
8a4d915
commit d7ed2b1
Showing
1 changed file
with
8 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,9 @@ | ||
sudo: true | ||
before_install: | ||
- psql -c 'create database travis_ci_test;' -U postgres | ||
dist: xenial | ||
services: postgresql | ||
env: DJANGO_SETTINGS_MODULE=config.settings.test | ||
language: python | ||
services: | ||
- postgresql | ||
env: | ||
- DJANGO_SETTINGS_MODULE=config.settings.test | ||
install: | ||
- pip install -r requirements/local.txt | ||
script: | ||
- coverage run manage.py test | ||
after_success: | ||
- coveralls | ||
notifications: | ||
email: | ||
- merlin.buczek@gmail.com | ||
python: | ||
- "3.7" | ||
python: 3.7 | ||
before_script: psql -c 'create database travis_ci_test;' -U postgres | ||
install: pip install -r requirements/test.txt | ||
script: coverage run -m pytest | ||
after_success: coveralls |