Changeset 2e67e07 in trunk


Ignore:
Timestamp:
2021-03-31T20:42:39Z (4 years ago)
Author:
Sajith Sasidharan <sajith@…>
Branches:
master
Children:
d17f3d3
Parents:
1351a62
Message:

Just don't run coverage tests with Python 3.6 + Windows

Another test matrix setup I tried is this:

jobs:

coverage:

matrix:

os:

  • macos-latest
  • windows-latest
  • ubuntu-latest

python-version:

  • 2.7

include:

  • python-version: 3.6 os:
    • macos-latest
    • ubuntu-latest
  • python-version: 3.6 os: windows-latest experimental: true

But that failed on Python 3.6 + macOS with a simple error message, and
no further explanation: "This check failed". Huh?

Might simply exclude Windows altogether, because that approach sort of
worked in another experiment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .github/workflows/ci.yml

    r1351a62 r2e67e07  
    2424        python-version:
    2525          - 2.7
    26 
    27         # Also run coverage tests with Python 3.6.  Expect failures on
    28         # Windows, until we've had a chance to deal with them.
    29         include:
    30           - python-version: 3.6
    31             os:
    32               - macos-latest
    33               - ubuntu-latest
     26          - 3.6
     27        exclude:
     28          # Do not run coverage tests with Python 3.6 on Windows for
     29          # now.  They will fail.  Dealing with them separately would
     30          # be simpler.
    3431          - python-version: 3.6
    3532            os: windows-latest
    36             experimental: true
    3733
    3834    steps:
Note: See TracChangeset for help on using the changeset viewer.