speedtest-cli-pub/.travis.yml

30 lines
710 B
YAML
Raw Normal View History

2014-02-11 11:17:19 +08:00
---
language: c
script:
- curl -s http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tar.bz2 | tar xj
- cd Python-2.4.6
- ./configure --prefix=$HOME/virtualenv/python2.4 > /dev/null 2>&1 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
- $HOME/virtualenv/python2.4/bin/python -V
- $HOME/virtualenv/python2.4/bin/python speedtest_cli.py
---
2014-02-08 23:37:39 +08:00
language: python
python:
- 2.7
- 3.3
2014-02-08 23:37:39 +08:00
install:
- pip install .
- pip install pep8 pyflakes
2014-02-08 23:37:39 +08:00
script:
2014-02-11 06:43:34 +08:00
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pep8 --show-source speedtest_cli.py; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes speedtest_cli.py; fi
- python speedtest_cli.py
2014-02-08 23:37:39 +08:00
notifications:
email:
- matt@sivel.net