diff --git a/{{cookiecutter.app_name}}/.travis.yml b/{{cookiecutter.app_name}}/.travis.yml index 08d0986..e28b70b 100644 --- a/{{cookiecutter.app_name}}/.travis.yml +++ b/{{cookiecutter.app_name}}/.travis.yml @@ -1,6 +1,8 @@ # Config file for automatic testing at travis-ci.org sudo: false # http://docs.travis-ci.com/user/migrating-from-legacy/ language: python +env: +- FLASK_APP=autoapp.py FLASK_DEBUG=1 python: - 2.7 - 3.4 diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index afd3e64..29f280a 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,16 +2,16 @@ -r prod.txt # Testing -pytest==3.0.6 -WebTest==2.0.26 +pytest==3.0.7 +WebTest==2.0.27 factory-boy==2.8.1 # Lint and code style flake8==3.3.0 flake8-blind-except==0.1.1 flake8-debugger==1.4.0 -flake8-docstrings==1.1.0 -flake8-isort==2.1.3 +flake8-docstrings==1.0.3 +flake8-isort==2.2 flake8-quotes==0.9.0 isort==4.2.5 pep8-naming==0.4.1 diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index d0ed6b6..537467c 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -1,17 +1,17 @@ # Everything needed in production # Flask -Flask==0.12 +Flask==0.12.1 MarkupSafe==1.0 -Werkzeug==0.11.15 -Jinja2==2.9.5 +Werkzeug==0.12.1 +Jinja2==2.9.6 itsdangerous==0.24 click>=5.0 # Database Flask-SQLAlchemy==2.2 -psycopg2==2.7 -SQLAlchemy==1.1.5 +psycopg2==2.7.1 +SQLAlchemy==1.1.9 # Migrations Flask-Migrate==2.0.3