Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sivel/speedtest-cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2014-02-11 22:22:08 +0400
committerMatt Martz <matt@sivel.net>2014-02-11 22:22:08 +0400
commitace90a4109ca377ad89d88922b9a71099342e065 (patch)
tree0795f307119b34a9c39e4485cb371de1e73901bd
parentd22842346ff98b2ffa0674f3c450c7b40767d3aa (diff)
Add pypy supporttravis
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3bc1f74..84a0d00 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,10 +6,12 @@ python:
- 2.7
- 3.2
- 3.3
+ - pypy
install:
- pip install .
- pip install pep8 pyflakes
+
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pep8 --show-source speedtest_cli.py; fi
@@ -17,7 +19,6 @@ script:
- python speedtest_cli.py
- - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then ls ~/virtualenv/; fi;
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then curl -s http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tar.bz2 | tar xj; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then cd Python-2.4.6; ./configure --prefix=$HOME/virtualenv/python2.4 > /dev/null 2>&1; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then make > /dev/null 2>&1; fi