diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c8501c43 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.6" + - "3.7-dev" + # - "pypy" -- appears to hang + # - "pypy3" +# command to install dependencies +install: "make init" +# command to run tests +script: + - make tests \ No newline at end of file diff --git a/Makefile b/Makefile index 90f58843..eee39188 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,4 @@ tests: - pytest test_pipenv.py + pipenv run pytest test_pipenv.py +init: + pip install pipenv