diff --git a/.gitignore b/.gitignore index 10c9b54..b7c2535 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,5 @@ example/sqla/website/settings_dev.py .ssh_key example/gae/website/settings/production.py example/sqla/website/settings/production.py +example/gae/website/settings/local.py +example/sqla/website/settings/local.py diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7505cc1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: python + +python: + - "2.7" + - "3.5" + +sudo: false + +cache: + - apt + - pip + +install: + - pip install -r requirements.txt -r requirements-dev.txt + +script: nosetests + +branches: + only: + - develop + - master