Skip to content

Commit

Permalink
getting to know travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wooyek committed Dec 25, 2015
1 parent e7c79b7 commit b873436
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b873436

Please sign in to comment.