mirror of
https://github.com/Dinnerbone/mcstatus.git
synced 2026-04-06 03:51:23 +08:00
8 lines
279 B
YAML
8 lines
279 B
YAML
language: python
|
|
python:
|
|
- 3.3
|
|
- 2.7
|
|
install:
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r requirements/python2.txt --use-mirrors; fi
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements/python3.txt --use-mirrors; fi
|
|
script: nosetests |