Skip to content

Add support to trace.py for multiple output file arguments #433

Add support to trace.py for multiple output file arguments

Add support to trace.py for multiple output file arguments #433

Workflow file for this run

name: coverage
on:
push:
branches: [ master ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install nose2
run: |
python -m pip install --upgrade pip
python -m pip install nose2[coverage_plugin]
- name: Run tests with coverage
run: nose2 -C --coverage skoolkit --coverage-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}