##// END OF EJS Templates
remove numpy install from travis/tox scripts...
MinRK -
Show More
@@ -1,14 +1,13 b''
1 # http://travis-ci.org/#!/ipython/ipython
1 # http://travis-ci.org/#!/ipython/ipython
2 language: python
2 language: python
3 python:
3 python:
4 - 2.6
4 - 2.6
5 - 2.7
5 - 2.7
6 - 3.2
6 - 3.2
7 before_install:
7 before_install:
8 - pip install --use-mirrors numpy
9 - easy_install -q pyzmq
8 - easy_install -q pyzmq
10 install:
9 install:
11 - python setup.py install -q
10 - python setup.py install -q
12 script:
11 script:
13 - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
12 - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
14 - if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi
13 - if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi
@@ -1,19 +1,19 b''
1 # Tox (http://tox.testrun.org/) is a tool for running tests
1 # Tox (http://tox.testrun.org/) is a tool for running tests
2 # in multiple virtualenvs. This configuration file will run the
2 # in multiple virtualenvs. This configuration file will run the
3 # test suite on all supported python versions. To use it, "pip install tox"
3 # test suite on all supported python versions. To use it, "pip install tox"
4 # and then run "tox" from this directory.
4 # and then run "tox" from this directory.
5
5
6 [tox]
6 [tox]
7 envlist = py26, py27, py32
7 envlist = py26, py27, py32
8
8
9 [testenv]
9 [testenv]
10 commands =
10 commands =
11 pip install -q --use-mirrors numpy nose
11 pip install -q --use-mirrors nose
12 easy_install -q pyzmq
12 easy_install -q pyzmq
13 iptest -w /tmp
13 iptest -w /tmp
14
14
15 [testenv:py32]
15 [testenv:py32]
16 commands =
16 commands =
17 pip install -q --use-mirrors numpy nose
17 pip install -q --use-mirrors nose
18 easy_install -q pyzmq
18 easy_install -q pyzmq
19 iptest3 -w /tmp
19 iptest3 -w /tmp
General Comments 0
You need to be logged in to leave comments. Login now