Skip to content

mining thresholds in kb #141

mining thresholds in kb

mining thresholds in kb #141

Workflow file for this run

name: "test"
on: [push]
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m unittest discover -s ./automl/tests -p '*_test.py'