Skip to content

Get rid of extra helpers, validate label names, add logging #68

Get rid of extra helpers, validate label names, add logging

Get rid of extra helpers, validate label names, add logging #68

Workflow file for this run

name: Run the tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
MLFLOW_TRACKING_URI: "http://localhost:5000"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install pipenv
run: pip install pipenv
- name: Setup repo
run: |
pipenv --python 3.10 install ".[dev]"
pipenv --python 3.10 install ".[data]" ".[airflow]" ".[aisystems]"
- name: Run tests
run: |
pipenv run pytest -s -v -o log_cli=true \
--ignore=tests/test_spark_operator.py \
--ignore=tests/test_operator.py \
tests