Skip to content

Commit 8bcda4a

Browse files
committed
add TravisCI config
1 parent f67b6c9 commit 8bcda4a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.4"
5+
- "3.5"
6+
- "3.6" # current default Python on Travis CI
7+
- "3.7"
8+
- "3.8"
9+
- "3.8-dev" # 3.8 development branch
10+
- "nightly" # nightly build
11+
# command to install dependencies
12+
install:
13+
- pip install -r requirements.txt
14+
# command to run tests
15+
script:
16+
- python tests/units.py

0 commit comments

Comments
 (0)