From 70b88a4e263fcf3d2836ff2c832f4506c012e795 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 18 Mar 2019 23:16:30 -0400 Subject: [PATCH 1/4] Create .travis.yml --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2a896d1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "3.4" + - "3.5" + - "3.6" +install: + - pip install pipenv + - pipenv install --dev + +script: nosetests From ccbfc2d58fab933e5fe728b1cfed58d8726fb456 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 18 Mar 2019 23:18:55 -0400 Subject: [PATCH 2/4] Update .travis.yml --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a896d1..2a0e7cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: python python: - - "3.4" - - "3.5" - - "3.6" + - "3.7" install: - pip install pipenv - pipenv install --dev From d2a95f01686732f5d2045d8fe1218231f3af650c Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 18 Mar 2019 23:23:28 -0400 Subject: [PATCH 3/4] Update .travis.yml --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a0e7cf..ccfe3d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: python -python: - - "3.7" +# Enable python 3.7 without globally enabling sudo and dist: xenial for other build jobs +matrix: + include: + - python: 3.7 + dist: xenial + sudo: true install: - pip install pipenv - pipenv install --dev From f29c9a70ffd6916c5901bad9afab50902fbb2eb0 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Mon, 18 Mar 2019 23:33:35 -0400 Subject: [PATCH 4/4] Create appveyor.yml --- appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..26f3592 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ +environment: + + matrix: + + # For Python versions available on Appveyor, see + # http://www.appveyor.com/docs/installed-software#python + + - PYTHON: "C:\\Python37" + +install: + - pip install pipenv + - pipenv --python 3 + - pipenv install --dev + +build: off + +test_script: + # Put your test command here. + # Note that you must use the environment variable %PYTHON% to refer to + # the interpreter you're using - Appveyor does not do anything special + # to put the Python version you want to use on PATH. +- "pipenv run nosetests"