Files
websockify/.travis.yml
T
Pierre Ossman b382c4f6a7 Use Ubuntu Trusty (14.04) for Travis
Python 2.6 is not available in the newer environment, so make sure
we're getting the one we need for now.
2019-06-13 13:38:43 +02:00

16 lines
313 B
YAML

language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
# We need trusty for Python 2.6. We can raise this when we no longer
# care about 2.6.
dist: trusty
install:
- pip install 'setuptools>=18.5,<=39.0.0'
- pip install -r test-requirements.txt
script: python setup.py nosetests --verbosity=3