Skip to content

Fix issue with missing in_dist_labels #183

Fix issue with missing in_dist_labels

Fix issue with missing in_dist_labels #183

Workflow file for this run

name: Tests
on: [ push ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Create shape dataset
run: |
python tests/generate_fake_dataset.py
- name: Test with pytest
run: |
pytest tests/ --ignore=tests/train