diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a9c3bb8 --- /dev/null +++ b/.travis.yml @@ -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 diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..a78ce5a --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,4 @@ +enum34==1.1.6 +hypothesis==3.6.0 +py==1.4.31 +pytest==3.0.3