forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (49 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: python
env:
- TEST_DOCTESTS="true"
- TEST_DOCTESTS="false"
python:
- 2.5
- 2.6
- 2.7
- 3.2
- 3.3
- "pypy"
matrix:
include:
- python: 2.7
env:
- TEST_GMPY="true"
- TEST_DOCTESTS="true"
- python: 2.7
env:
- TEST_GMPY="true"
- TEST_DOCTESTS="false"
- python: 3.3
env:
- TEST_GMPY="true"
- TEST_DOCTESTS="true"
- python: 3.3
env:
- TEST_GMPY="true"
- TEST_DOCTESTS="false"
- python: 2.7
env: TEST_SPHINX="true"
allow_failures:
- python: "pypy"
before_install:
- if [[ "${TEST_GMPY}" == "true" ]]; then
sudo apt-get update -qq;
sudo apt-get install -qq libgmp-dev;
pip install "gmpy==1.16";
fi
- if [[ "${TEST_SPHINX}" == "true" ]]; then
pip install "sphinx==1.1.3";
fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then python bin/use2to3; cd py3k-sympy; fi
- python setup.py install
script:
- bin/test_travis.sh
notifications:
email: false