Add Travis CI support

I'm happy with SourceHut's build support, but Travis allows us to
tests other Python versions.
This commit is contained in:
Alan Orth 2019-07-29 11:45:58 +03:00
parent ac127e7f8a
commit 17f4a26ac0
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 15 additions and 0 deletions

15
.travis.yml Normal file
View File

@ -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