Permalink
Newer
Older
100644 15 lines (13 sloc) 234 Bytes
Sep 13, 2016 @michaelhush Added Travis CI test script
1 language: python
2 python:
Oct 4, 2016 @michaelhush Travis CI defining python version
3 - "2.7.12"
Sep 13, 2016 @michaelhush Added Travis CI test script
4 - "3.5"
Oct 4, 2016 @michaelhush Travis CI defining python version
5 install:
Oct 4, 2016 @michaelhush Travis CI issue identified
6 - pip install --upgrade pip
Oct 4, 2016 @michaelhush Final attempt to fix Travis CI
7 - python --version
8 - pip --version
Oct 4, 2016 @michaelhush Attempt to get travis CI working
9 - pip install -r requirements.txt
Sep 13, 2016 @michaelhush Added Travis CI test script
10 # command to run tests
11 script: python setup.py test
12 os:
13 - linux
14
15