8000 Ci appveyor by tacaswell · Pull Request #8855 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Ci appveyor #8855

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

Merged
merged 10 commits into from
Jul 10, 2017
Prev Previous commit
Next Next commit
CI: drop python 3.6 due to weird errors on appveyor
  • Loading branch information
tacaswell committed Jul 10, 2017
commit 0156cc3baf138b07f5220db1112446ea4cd4dde4
16 changes: 8 additions & 8 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ environment:
PYTHON_VERSION: "3.5"
TEST_ALL: "no"
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
- TARGET_ARCH: "x64"
CONDA_PY: "36"
PYTHON_VERSION: "3.6"
# this variable influence pdf/svg and most importantly the latex related tests
# which triples the runtime of the tests (7-8min vs 30min).
# pick the one which seems to make the most problems and run it last, so that
# the rest of the tests can give feedback earlier
TEST_ALL: "yes"
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
# - TARGET_ARCH: "x64"
# CONDA_PY: "36"
# PYTHON_VERSION: "3.6"
# # this variable influence pdf/svg and most importantly the latex related tests
# # which triples the runtime of the tests (7-8min vs 30min).
# # pick the one which seems to make the most problems and run it last, so that
# # the rest of the tests can give feedback earlier
# CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"

# We always use a 64-bit machine, but can build x86 distributions
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).
Expand Down
0