Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
Add .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Marica Odagaki committed Nov 4, 2016
1 parent 035918e commit ff19195
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: python
cache: pip
python:
# see https://docs.travis-ci.com/user/languages/python/ for options
- "2.7" # hypothesis's minimum version for 2.x
- "3.3" # hypothesis's minimum version for 3.x
- "3.4" # trusty
- "3.5" # >= xenial
- "3.6-dev"
- "nightly"
# command to install dependencies
install:
- "pip install -r dev-requirements.txt"
# command to run tests
script:
- "python -m pytest tests/ -v"
notifications:
email: false
4 changes: 4 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
enum34==1.1.6
hypothesis==3.6.0
py==1.4.31
pytest==3.0.3

0 comments on commit ff19195

Please sign in to comment.