swiftonfile/.travis.yml
Thiago da Silva 3ddd952fc6 fixing travis file to run correct unit test
Signed-off-by: Thiago da Silva <thiago@redhat.com>
2014-04-22 14:41:09 -04:00

13 lines
279 B
YAML

language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install tox nose"
# command to run tests
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then tox -e py26; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27; fi