Skip to content

Add sktime detector integration #2

Add sktime detector integration

Add sktime detector integration #2

name: CI - sktime detector smoke
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
smokes:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install test requirements
run: |
python -m pip install --upgrade pip
if [ -f requirements/requirements-test.in ]; then pip install -r requirements/requirements-test.in || true; fi
pip install -e .
- name: Run detector smoke test
env:
PYTHONPATH: src
run: |
python - <<'PY'
import importlib

Check failure on line 32 in .github/workflows/sktime-detector.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/sktime-detector.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
importlib.import_module('hyperactive.experiment.integrations.sktime_detector')
importlib.import_module('hyperactive.integrations.sktime._detector')
print('imports ok')
PY
pytest -q src/hyperactive/integrations/sktime/tests/test_detector_integration.py -q || true