Skip to content

Adding the Better Tracing Suite into Main #1329

Adding the Better Tracing Suite into Main

Adding the Better Tracing Suite into Main #1329

Workflow file for this run

name: Tests (pytest)
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
paths:
- "**.csv"
- "**.npy"
- "**.out"
- "**.pkl"
- "**.png"
- "**.py"
- "**.toml"
- "**.yaml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and install test dependencies
run: |
pip install --upgrade virtualenv
pip install --upgrade pip setuptools
pip show pip setuptools
virtualenv --upgrade-embed-wheels
# virtualenv --reset-app-data
pip install -e .[tests]
- name: Test with pytest
run: |
pytest --cov=topostats --mpl -x
- name: Determine coverage
run: |
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4