Merge pull request #4 from alphagov/service_creation

This commit is contained in:
Adam Shimali
2016-01-12 17:34:15 +00:00
41 changed files with 1288 additions and 38 deletions

View File

@@ -28,3 +28,10 @@ fi
# Install Python development dependencies
pip3 install -r requirements_for_test.txt
# Create Postgres databases
createdb notification_api
createdb test_notification_api
# Upgrade databases
python application.py db upgrade

View File

@@ -29,5 +29,6 @@ display_result $? 1 "Code style check"
#py.test --cov=app tests/
#display_result $? 2 "Code coverage"
py.test -v
display_result $? 3 "Unit tests"