Show More
@@ -1,118 +1,118 b'' | |||||
1 | # http://travis-ci.org/#!/ipython/ipython |
|
1 | # http://travis-ci.org/#!/ipython/ipython | |
2 | language: python |
|
2 | language: python | |
3 | os: linux |
|
3 | os: linux | |
4 |
|
4 | |||
5 | addons: |
|
5 | addons: | |
6 | apt: |
|
6 | apt: | |
7 | packages: |
|
7 | packages: | |
8 | - graphviz |
|
8 | - graphviz | |
9 |
|
9 | |||
10 | python: |
|
10 | python: | |
11 | - 3.6 |
|
11 | - 3.6 | |
12 |
|
12 | |||
13 | sudo: false |
|
13 | sudo: false | |
14 |
|
14 | |||
15 | env: |
|
15 | env: | |
16 | global: |
|
16 | global: | |
17 | - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH |
|
17 | - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH | |
18 |
|
18 | |||
19 | group: edge |
|
19 | group: edge | |
20 |
|
20 | |||
21 | before_install: |
|
21 | before_install: | |
22 | - | |
|
22 | - | | |
23 | # install Python on macOS |
|
23 | # install Python on macOS | |
24 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then |
|
24 | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then | |
25 | env | sort |
|
25 | env | sort | |
26 | if ! which python$TRAVIS_PYTHON_VERSION; then |
|
26 | if ! which python$TRAVIS_PYTHON_VERSION; then | |
27 | HOMEBREW_NO_AUTO_UPDATE=1 brew tap minrk/homebrew-python-frameworks |
|
27 | HOMEBREW_NO_AUTO_UPDATE=1 brew tap minrk/homebrew-python-frameworks | |
28 | HOMEBREW_NO_AUTO_UPDATE=1 brew cask install python-framework-${TRAVIS_PYTHON_VERSION/./} |
|
28 | HOMEBREW_NO_AUTO_UPDATE=1 brew cask install python-framework-${TRAVIS_PYTHON_VERSION/./} | |
29 | fi |
|
29 | fi | |
30 | python3 -m pip install virtualenv |
|
30 | python3 -m pip install virtualenv | |
31 | python3 -m virtualenv -p $(which python$TRAVIS_PYTHON_VERSION) ~/travis-env |
|
31 | python3 -m virtualenv -p $(which python$TRAVIS_PYTHON_VERSION) ~/travis-env | |
32 | source ~/travis-env/bin/activate |
|
32 | source ~/travis-env/bin/activate | |
33 | fi |
|
33 | fi | |
34 | - python --version |
|
34 | - python --version | |
35 |
|
35 | |||
36 | install: |
|
36 | install: | |
37 | - pip install pip --upgrade |
|
37 | - pip install pip --upgrade | |
38 | - pip install setuptools --upgrade |
|
38 | - pip install setuptools --upgrade | |
39 | - pip install -e file://$PWD#egg=ipython[test] --upgrade |
|
39 | - pip install -e file://$PWD#egg=ipython[test] --upgrade | |
40 | - pip install trio curio --upgrade --upgrade-strategy eager |
|
40 | - pip install trio curio --upgrade --upgrade-strategy eager | |
41 | - pip install pytest matplotlib |
|
41 | - pip install pytest 'matplotlib !=3.2.0' | |
42 | - pip install codecov check-manifest --upgrade |
|
42 | - pip install codecov check-manifest --upgrade | |
43 |
|
43 | |||
44 | script: |
|
44 | script: | |
45 | - check-manifest |
|
45 | - check-manifest | |
46 | - | |
|
46 | - | | |
47 | if [[ "$TRAVIS_PYTHON_VERSION" == "nightly" ]]; then |
|
47 | if [[ "$TRAVIS_PYTHON_VERSION" == "nightly" ]]; then | |
48 | # on nightly fake parso known the grammar |
|
48 | # on nightly fake parso known the grammar | |
49 | cp /home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/parso/python/grammar37.txt /home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/parso/python/grammar38.txt |
|
49 | cp /home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/parso/python/grammar37.txt /home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/parso/python/grammar38.txt | |
50 | fi |
|
50 | fi | |
51 | - cd /tmp && iptest --coverage xml && cd - |
|
51 | - cd /tmp && iptest --coverage xml && cd - | |
52 | - pytest IPython |
|
52 | - pytest IPython | |
53 | # On the latest Python (on Linux) only, make sure that the docs build. |
|
53 | # On the latest Python (on Linux) only, make sure that the docs build. | |
54 | - | |
|
54 | - | | |
55 | if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then |
|
55 | if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | |
56 | pip install -r docs/requirements.txt |
|
56 | pip install -r docs/requirements.txt | |
57 | python tools/fixup_whats_new_pr.py |
|
57 | python tools/fixup_whats_new_pr.py | |
58 | make -C docs/ html SPHINXOPTS="-W" |
|
58 | make -C docs/ html SPHINXOPTS="-W" | |
59 | fi |
|
59 | fi | |
60 |
|
60 | |||
61 | after_success: |
|
61 | after_success: | |
62 | - cp /tmp/ipy_coverage.xml ./ |
|
62 | - cp /tmp/ipy_coverage.xml ./ | |
63 | - cp /tmp/.coverage ./ |
|
63 | - cp /tmp/.coverage ./ | |
64 | - codecov |
|
64 | - codecov | |
65 |
|
65 | |||
66 | matrix: |
|
66 | matrix: | |
67 | include: |
|
67 | include: | |
68 | - arch: amd64 |
|
68 | - arch: amd64 | |
69 | python: "3.7" |
|
69 | python: "3.7" | |
70 | dist: xenial |
|
70 | dist: xenial | |
71 | sudo: true |
|
71 | sudo: true | |
72 | - arch: arm64 |
|
72 | - arch: arm64 | |
73 | python: "3.7" |
|
73 | python: "3.7" | |
74 | dist: xenial |
|
74 | dist: xenial | |
75 | env: ARM64=True IPYTHON_TESTING_TIMEOUT_SCALE=2 |
|
75 | env: ARM64=True IPYTHON_TESTING_TIMEOUT_SCALE=2 | |
76 | sudo: true |
|
76 | sudo: true | |
77 | - arch: amd64 |
|
77 | - arch: amd64 | |
78 | python: "3.8" |
|
78 | python: "3.8" | |
79 | dist: xenial |
|
79 | dist: xenial | |
80 | sudo: true |
|
80 | sudo: true | |
81 | - arch: amd64 |
|
81 | - arch: amd64 | |
82 | python: "nightly" |
|
82 | python: "nightly" | |
83 | dist: xenial |
|
83 | dist: xenial | |
84 | sudo: true |
|
84 | sudo: true | |
85 | - arch: arm64 |
|
85 | - arch: arm64 | |
86 | python: "nightly" |
|
86 | python: "nightly" | |
87 | dist: bionic |
|
87 | dist: bionic | |
88 | env: ARM64=True |
|
88 | env: ARM64=True | |
89 | sudo: true |
|
89 | sudo: true | |
90 | - os: osx |
|
90 | - os: osx | |
91 | language: generic |
|
91 | language: generic | |
92 | python: 3.6 |
|
92 | python: 3.6 | |
93 | env: TRAVIS_PYTHON_VERSION=3.6 |
|
93 | env: TRAVIS_PYTHON_VERSION=3.6 | |
94 | - os: osx |
|
94 | - os: osx | |
95 | language: generic |
|
95 | language: generic | |
96 | python: 3.7 |
|
96 | python: 3.7 | |
97 | env: TRAVIS_PYTHON_VERSION=3.7 |
|
97 | env: TRAVIS_PYTHON_VERSION=3.7 | |
98 | allow_failures: |
|
98 | allow_failures: | |
99 | - python: nightly |
|
99 | - python: nightly | |
100 |
|
100 | |||
101 | before_deploy: |
|
101 | before_deploy: | |
102 | - rm -rf dist/ |
|
102 | - rm -rf dist/ | |
103 | - python setup.py sdist |
|
103 | - python setup.py sdist | |
104 | - python setup.py bdist_wheel |
|
104 | - python setup.py bdist_wheel | |
105 |
|
105 | |||
106 | deploy: |
|
106 | deploy: | |
107 | provider: releases |
|
107 | provider: releases | |
108 | api_key: |
|
108 | api_key: | |
109 | secure: Y/Ae9tYs5aoBU8bDjN2YrwGG6tCbezj/h3Lcmtx8HQavSbBgXnhnZVRb2snOKD7auqnqjfT/7QMm4ZyKvaOEgyggGktKqEKYHC8KOZ7yp8I5/UMDtk6j9TnXpSqqBxPiud4MDV76SfRYEQiaDoG4tGGvSfPJ9KcNjKrNvSyyxns= |
|
109 | secure: Y/Ae9tYs5aoBU8bDjN2YrwGG6tCbezj/h3Lcmtx8HQavSbBgXnhnZVRb2snOKD7auqnqjfT/7QMm4ZyKvaOEgyggGktKqEKYHC8KOZ7yp8I5/UMDtk6j9TnXpSqqBxPiud4MDV76SfRYEQiaDoG4tGGvSfPJ9KcNjKrNvSyyxns= | |
110 | file: dist/* |
|
110 | file: dist/* | |
111 | file_glob: true |
|
111 | file_glob: true | |
112 | skip_cleanup: true |
|
112 | skip_cleanup: true | |
113 | on: |
|
113 | on: | |
114 | repo: ipython/ipython |
|
114 | repo: ipython/ipython | |
115 | all_branches: true # Backports are released from e.g. 5.x branch |
|
115 | all_branches: true # Backports are released from e.g. 5.x branch | |
116 | tags: true |
|
116 | tags: true | |
117 | python: 3.6 # Any version should work, but we only need one |
|
117 | python: 3.6 # Any version should work, but we only need one | |
118 | condition: $TRAVIS_OS_NAME = "linux" |
|
118 | condition: $TRAVIS_OS_NAME = "linux" |
General Comments 0
You need to be logged in to leave comments.
Login now