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