8000 Clean up Appveyor config file by dstansby · Pull Request #9319 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Clean up Appveyor config file #9319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Install dependencies earlier
  • Loading branch information
dstansby committed Nov 14, 2017
commit 38a367e095eeb1b6e1eb6eca5a7d6ab445272dc7
1 change: 1 addition & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ install:
- echo %PYTHON_VERSION% %TARGET_ARCH%
# pytest-cov>=2.3.1 due to https://github.com/pytest-dev/pytest-cov/issues/124
- pip install -q pytest "pytest-cov>=2.3.1" pytest-rerunfailures pytest-timeout pytest-xdist
cycler pyparsing backports.functools-lru-cache
Copy link
Member Author
@dstansby dstansby Nov 14, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Putting these in this "quiet" pip section (instead of installing them along with Matplotlib later) should shave a few hundred useless lines from the output log.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These packages will be installed automatically (#9673).

Copy link
Member Author
66EE

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, but they're installed at the same time as Matplotlib, which I don't think we want to have a quiet flag. Putting them here prevents pip spewing out a load of extra lines that aren't very useful for debugging.


# Apply patch to `subprocess` on Python versions > 2 and < 3.6.3
# https://github.com/matplotlib/matplotlib/issues/9176
Expand Down
0