From fd1ad2ca25dba30b7d192eb2f328bcb82309d1d5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Jan 2017 14:05:45 -0500 Subject: [PATCH] travis --- .travis.yml | 16 ++++++++++++++++ Makefile | 4 +++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .travis.yml 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