Skip to content

removed transonic

removed transonic #155

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Install dependencies
run: |
pip install -e .
pip install '.[test]'
- name: Test and generate coverage report
run: |
pytest --cov=./tests --cov-report=xml --ignore=./brightest_path_lib/sandbox.py,./brightest_path_lib/sandbox2.py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3