From 17f4a26ac0e00f20f663846f596091af0deb084a Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 29 Jul 2019 11:45:58 +0300 Subject: [PATCH] Add Travis CI support I'm happy with SourceHut's build support, but Travis allows us to tests other Python versions. --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..803ec0a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +dist: xenial +language: python +python: + - "3.5" + - "3.6" + - "3.7" +install: + - "pip install pipenv --upgrade-strategy=only-if-needed" + - "pipenv install --dev" +script: pytest +env: + - PIPENV_NOSPIN=True + - PIPENV_HIDE_EMOJIS=True + +# vim: ts=2 sw=2 et