Skip to content

Commit

Permalink
Add minimal .travis.yml CI config file
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Esser <[email protected]>
  • Loading branch information
steven-esser committed Oct 16, 2020
1 parent 343ff29 commit fa55f68
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This is a skeleton Travis CI config file that provides a starting point for adding CI
# to a Python project. Since we primarily develop in python3, this skeleton config file
# will be specific to that language.
#
# See https://config.travis-ci.com/ for a full list of configuration options.

os: linux

dist: xenial

language: python
python:
- "3.6"
- "3.7"
- "3.8"

# Scripts to run at install stage
install: ./configure

# Scripts to run at script stage
script: bin/pytest

0 comments on commit fa55f68

Please sign in to comment.