Update versioninfo.py
[Neo-Hockey-Test.git] / .travis.yml
blob14639e622cab97449238eef139381f658e8d5c10
1 os:
2   - linux
3 language: 
4   - python
5 python:
6   - "2.7"
7   - "3.4"
8   - "3.5"
9   - "3.6"
10   - "3.7"
11   - "3.8"
12   - "3.8-dev"
13   - "nightly"
14   # does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
15   # maintainers to fix their pypy-dev package.
16   - "pypy"
17   - "pypy3"
18 # command to install dependencies
19 install:
20   - python setup.py build
21   - python setup.py install
22 # command to run tests
23 script: 
24   - nosetests
25 # from url: http://docs.travis-ci.com/user/languages/python/