Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c152045

Browse files
authored
Merge pull request #19504 from QuLogic/remove-travis
Remove remaining references to Travis CI
2 parents dbed8a0 + b54f6b2 commit c152045

15 files changed

+57
-343
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ environment:
2727
- PYTHON_VERSION: "3.7"
2828
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
2929
TEST_ALL: "no"
30-
EXTRAREQS: "-r requirements/testing/travis_extra.txt"
30+
EXTRAREQS: "-r requirements/testing/extra.txt"
3131
- PYTHON_VERSION: "3.8"
3232
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
3333
TEST_ALL: "no"
34-
EXTRAREQS: "-r requirements/testing/travis_extra.txt"
34+
EXTRAREQS: "-r requirements/testing/extra.txt"
3535

3636
# We always use a 64-bit machine, but can build x86 distributions
3737
# with the PYTHON_ARCH variable
@@ -62,7 +62,7 @@ install:
6262
- conda install -c conda-forge pywin32
6363
- echo %PYTHON_VERSION% %TARGET_ARCH%
6464
# Install dependencies from PyPI.
65-
- python -mpip install --upgrade -r requirements/testing/travis_all.txt %EXTRAREQS% %PINNEDVERS%
65+
- python -mpip install --upgrade -r requirements/testing/all.txt %EXTRAREQS% %PINNEDVERS%
6666
# Install optional dependencies from PyPI.
6767
# Sphinx is needed to run sphinxext tests
6868
- python -mpip install --upgrade sphinx

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
XVFB_RUN: xvfb-run -a
3131
- os: ubuntu-16.04
3232
python-version: 3.7
33-
extra-requirements: '-r requirements/testing/travis_extra.txt'
33+
extra-requirements: '-r requirements/testing/extra.txt'
3434
XVFB_RUN: xvfb-run -a
3535
CFLAGS: "-fno-lto" # Ensure that disabling LTO works.
3636
- os: ubuntu-16.04
3737
python-version: 3.8
38-
extra-requirements: '-r requirements/testing/travis_extra.txt'
38+
extra-requirements: '-r requirements/testing/extra.txt'
3939
XVFB_RUN: xvfb-run -a
4040
- os: macos-latest
4141
python-version: 3.8
@@ -142,7 +142,7 @@ jobs:
142142
# Install dependencies from PyPI.
143143
python -mpip install --upgrade $PRE \
144144
cycler kiwisolver numpy pillow pyparsing python-dateutil \
145-
-r requirements/testing/travis_all.txt \
145+
-r requirements/testing/all.txt \
146146
${{ matrix.extra-requirements }}
147147
148148
# Install optional dependencies from PyPI.

.travis.yml

Lines changed: 0 additions & 208 deletions
This file was deleted.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
|DiscourseBadge|_ |Gitter|_ |GitHubIssues|_ |GitTutorial|_
44

5-
|Travis|_ |AzurePipelines|_ |AppVeyor|_ |Codecov|_ |LGTM|_
5+
|GitHubActions|_ |AzurePipelines|_ |AppVeyor|_ |Codecov|_ |LGTM|_
66

7-
.. |Travis| image:: https://travis-ci.com/matplotlib/matplotlib.svg?branch=master
8-
.. _Travis: https://travis-ci.com/matplotlib/matplotlib
7+
.. |GitHubActions| image:: https://github.com/matplotlib/matplotlib/workflows/Tests/badge.svg
8+
.. _GitHubActions: https://github.com/matplotlib/matplotlib/actions?query=workflow%3ATests
99

1010
.. |AzurePipelines| image:: https://dev.azure.com/matplotlib/matplotlib/_apis/build/status/matplotlib.matplotlib?branchName=master
1111
.. _AzurePipelines: https://dev.azure.com/matplotlib/matplotlib/_build/latest?definitionId=1&branchName=master

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ steps:
7575
texlive-latex-base \
7676
texlive-latex-extra \
7777
texlive-latex-recommended \
78-
texlive-xetex texlive-luatex
78+
texlive-xetex texlive-luatex \
79+
ttf-wqy-zenhei
7980
;;
8081
darwin)
8182
brew install --cask xquartz
@@ -91,7 +92,7 @@ steps:
9192

9293
- bash: |
9394
python -m pip install --upgrade pip
94-
python -m pip install -r requirements/testing/travis_all.txt -r requirements/testing/travis_extra.txt ||
95+
python -m pip install -r requirements/testing/all.txt -r requirements/testing/extra.txt ||
9596
[[ "$PYTHON_VERSION" = 'Pre' ]]
9697
displayName: 'Install dependencies with pip'
9798

ci/osx-deps

Lines changed: 0 additions & 65 deletions
This file was deleted.

doc/devel/coding_guide.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,15 +192,15 @@ Automated tests
192192
Whenever a pull request is created or updated, various automated test tools
193193
will run on all supported platforms and versions of Python.
194194

195-
* Make sure the Linting, Travis, AppVeyor, CircleCI, and Azure pipelines are
196-
passing before merging (All checks are listed at the bottom of the GitHub
197-
page of your pull request). Here are some tips for finding the cause of the
198-
test failure:
195+
* Make sure the Linting, GitHub Actions, AppVeyor, CircleCI, and Azure
196+
pipelines are passing before merging (All checks are listed at the bottom of
197+
the GitHub page of your pull request). Here are some tips for finding the
198+
cause of the test failure:
199199

200200
- If *Linting* fails, you have a code style issue, which will be listed
201201
as annotations on the pull request's diff.
202-
- If a Travis or AppVeyor run fails, search the log for ``FAILURES``. The
203-
subsequent section will contain information on the failed tests.
202+
- If a GitHub Actions or AppVeyor run fails, search the log for ``FAILURES``.
203+
The subsequent section will contain information on the failed tests.
204204
- If CircleCI fails, likely you have some reStructuredText style issue in
205205
the docs. Search the CircleCI log for ``WARNING``.
206206
- If Azure pipelines fail with an image comparison error, you can find the

0 commit comments

Comments
 (0)