-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add minimal .travis.yml CI config file
Signed-off-by: Steven Esser <[email protected]>
- Loading branch information
1 parent
343ff29
commit fa55f68
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |