Skip to content

Commit fa55f68

Browse files
committed
Add minimal .travis.yml CI config file
Signed-off-by: Steven Esser <sesser@nexb.com>
1 parent 343ff29 commit fa55f68

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This is a skeleton Travis CI config file that provides a starting point for adding CI
2+
# to a Python project. Since we primarily develop in python3, this skeleton config file
3+
# will be specific to that language.
4+
#
5+
# See https://config.travis-ci.com/ for a full list of configuration options.
6+
7+
os: linux
8+
9+
dist: xenial
10+
11+
language: python
12+
python:
13+
- "3.6"
14+
- "3.7"
15+
- "3.8"
16+
17+
# Scripts to run at install stage
18+
install: ./configure
19+
20+
# Scripts to run at script stage
21+
script: bin/pytest

0 commit comments

Comments
 (0)