Skip to content

Commit

Permalink
fixed the travis file
Browse files Browse the repository at this point in the history
Changed the names for the django app in the travis file to match the app.
  • Loading branch information
musflood committed Dec 18, 2017
1 parent c3870d5 commit c1cda23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -6,11 +6,11 @@ services:
- postgresql

before_script:
- psql -c "create database imagersite;" -U postgres
- psql -c "create database emotionreader;" -U postgres

#set some environment variables
env:
- DB_NAME=imagersite DB_USER=postgres DB_HOST='127.0.0.1' SECRET_KEY='potato' DEBUG='True'
- DB_NAME=emotionreader DB_USER=postgres DB_HOST='127.0.0.1' SECRET_KEY='potato' DEBUG='True'

# command to install dependencies
install:
Expand All @@ -19,8 +19,8 @@ install:

# commands to run tests
script:
- python imagersite/manage.py migrate
- coverage run imagersite/manage.py test imagersite
- python emotionreader/manage.py migrate
- coverage run emotionreader/manage.py test emotionreader

after_success:
- coveralls
Expand Down

0 comments on commit c1cda23

Please sign in to comment.