108f993eb3
It varies between systems if /usr/bin/python is Python 2.x or Python 3.x. Since we now only work with Python 3.x we should be more explicit in our scripts and documentation.
10 lines
184 B
YAML
10 lines
184 B
YAML
language: python
|
|
python:
|
|
- 3.6
|
|
|
|
install:
|
|
- pip install 'setuptools>=18.5,<=39.0.0'
|
|
- pip install -r test-requirements.txt
|
|
|
|
script: python3 setup.py nosetests --verbosity=3
|