Skip to content

fix tools.extractor and add a test for it #202

fix tools.extractor and add a test for it

fix tools.extractor and add a test for it #202

Workflow file for this run

name: Test
on:
push
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.7'
- name: Install
run: pip install .[tests]
- name: Run tests
run: python -m pytest -vs ./tests