Skip to content

Commit

Permalink
Simplify appveyor.yml
Browse files Browse the repository at this point in the history
I don't know what these PROFILE/PYTHON_VERSION environment variables are
supposed to be (or why PYTHON_VERSION is 3.6 for three different values
of PROFILE=py3{5,6,7}-conventions), but python -V reports the same "2.7.15"
version for all four of these jobs.

I see no reason to run the same set of tox jobs on the same Python
version four times (while incorrectly claiming they use different Python
versions).
  • Loading branch information
mgedmin committed Dec 3, 2018
1 parent ac29d9c commit 0fc4f24
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@
# AppVeyor CI settings (Windows Machine CI Tests)

matrix:
allow_failures:
- PROFILE: py38

environment:
matrix:
- PROFILE: py27-conventions
PYTHON_VERSION: "2.7"
TOXENV: "lint,docs"
- PROFILE: py35-conventions
PYTHON_VERSION: "3.6"
TOXENV: "lint,docs"
- PROFILE: py36-conventions
PYTHON_VERSION: "3.6"
TOXENV: "lint,docs"
- PROFILE: py37-conventions
PYTHON_VERSION: "3.6"
TOXENV: "lint,docs"
- PROFILE: py27
PYTHON_VERSION: "2.7"
TOXENV: "py27,py27-datetime"
Expand Down

0 comments on commit 0fc4f24

Please sign in to comment.