Unequal wip and new metrics #309
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: PR pytest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "tsml_eval/**" | |
- ".github/workflows/**" | |
- "pyproject.toml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-no-soft-deps: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Restore numba cache | |
uses: ./.github/actions/numba_cache | |
with: | |
cache_name: "test-no-soft-deps" | |
runner_os: ${{ runner.os }} | |
python_version: "3.10" | |
- name: Install | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: python -m pip install .[dev] | |
- name: Show dependencies | |
run: python -m pip list | |
- name: Run tests | |
run: python -m pytest -n logical | |
test-core-imports: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: python -m pip install . | |
- name: Show dependencies | |
run: python -m pip list | |
- name: Run import test | |
run: python tsml_eval/testing/tests/test_core_imports.py | |
pytest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-24.04, windows-2022 ] | |
python-version: [ "3.9", "3.10", "3.11", "3.12" ] | |
# skip python versions unless the PR has the 'full pytest actions' label | |
pr-testing: | |
- ${{ (github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'full pytest actions')) }} | |
exclude: | |
- pr-testing: true | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore numba cache | |
uses: ./.github/actions/numba_cache | |
with: | |
cache_name: "pytest" | |
runner_os: ${{ runner.os }} | |
python_version: ${{ matrix.python-version }} | |
- name: Install | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: python -m pip install .[all_extras,dev] | |
- name: Show dependencies | |
run: python -m pip list | |
- name: Tests | |
run: python -m pytest -n logical | |
codecov: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Disable Numba JIT | |
run: echo "NUMBA_DISABLE_JIT=1" >> $GITHUB_ENV | |
- name: Install | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
command: python -m pip install .[all_extras,dev,unstable_extras] | |
- name: Tests | |
run: python -m pytest -n logical --cov=tsml_eval --cov-report=xml --timeout 1800 | |
- uses: codecov/codecov-action@v5 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |