[lcov] Exclude executed lines respected exclude configs #2797
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 | |
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt | |
name: "Tests" | |
on: | |
push: | |
branches: | |
- master | |
- nedbat/* | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
COVERAGE_IGOR_VERBOSE: 1 | |
permissions: | |
contents: read | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
# When changing this list, be sure to check the [gh-actions] list in | |
# tox.ini so that tox will run properly. PYVERSIONS | |
# Available versions: | |
# https://github.com/actions/python-versions/blob/main/versions-manifest.json | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11.0-rc.1" | |
- "pypy-3.7" | |
exclude: | |
# Windows PyPy doesn't seem to work? | |
- os: windows-latest | |
python-version: "pypy-3.7" | |
fail-fast: false | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v3" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v4" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
# Can we start using the pip cache again? | |
cache: pip | |
cache-dependency-path: 'requirements/*.pip' | |
- name: "Install dependencies" | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install -r requirements/tox.pip | |
# For extreme debugging: | |
# python -c "import urllib.request as r; exec(r.urlopen('https://bit.ly/pydoctor').read())" | |
- name: "Run tox for ${{ matrix.python-version }}" | |
continue-on-error: true | |
id: tox1 | |
run: | | |
python -m tox -- -rfsEX | |
- name: "Retry tox for ${{ matrix.python-version }}" | |
id: tox2 | |
if: steps.tox1.outcome == 'failure' | |
run: | | |
python -m tox -- -rfsEX | |
- name: "Set status" | |
if: always() | |
run: | | |
if ${{ steps.tox1.outcome != 'success' && steps.tox2.outcome != 'success' }}; then | |
exit 1 | |
fi |