This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
Bump pytest-cov from 4.1.0 to 5.0.0 #118
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
name: Testing Text Prediction | |
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows | |
on: | |
push: | |
branches: [main, "release/*"] | |
pull_request: | |
branches: [main, "release/*"] | |
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} | |
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cpu: | |
runs-on: ${{ matrix.os }} | |
if: github.event.pull_request.draft == false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['macOS-11', "ubuntu-20.04"] | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: datasets cache | |
uses: actions/cache@v4 | |
with: | |
path: $HOME/.cache/torchtext | |
key: ${{ runner.os }}-datasets | |
restore-keys: | | |
${{ runner.os }}-datasets | |
- name: Install package & dependencies | |
run: | | |
pip install . -r tests/requirements.txt --upgrade -f https://download.pytorch.org/whl/cpu/torch_stable.html | |
pip list | |
- name: Testing | |
# NOTE: do not include coverage report here, see: https://github.com/nedbat/coveragepy/issues/1003 | |
run: coverage run --source lai_textpred -m pytest tests -v --durations=50 | |
- name: Statistics | |
run: | | |
coverage report | |
coverage xml | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# # see: https://github.com/actions/toolkit/issues/399 | |
# continue-on-error: true | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: tests/tests_pytorch/coverage.xml | |
# flags: ${COVERAGE_SCOPE},cpu,pytest-full,python${{ matrix.python-version }},pytorch${{ matrix.pytorch-version }} | |
# name: CPU-coverage | |
# fail_ci_if_error: false |