Skip to content

Commit

Permalink
Add travis file
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Jul 21, 2018
1 parent 623bc7c commit d39a9f3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: python

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

# command to install dependencies
install:
- pip install .
- pip install coverage coveralls flake8

# command to run tests
script:
- coverage run --source=flask_share setup.py test
- flake8 flask_share test_flask_share.py

after_success: coveralls

0 comments on commit d39a9f3

Please sign in to comment.