Skip to content

Bump black from 22.3.0 to 24.3.0 in /requirements #96

Bump black from 22.3.0 to 24.3.0 in /requirements

Bump black from 22.3.0 to 24.3.0 in /requirements #96

Workflow file for this run

name: unit tests
on:
push:
branches:
- main
- branch-[0-9]+.[0-9]+
pull_request:
branches:
- main
- branch-[0-9]+.[0-9]+
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
# Use `bash --noprofile --norc -exo pipefail` by default for all `run` steps in this workflow:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#defaultsrun
defaults:
run:
shell: bash --noprofile --norc -exo pipefail {0}
env:
# Note miniconda is pre-installed in the virtual environments for GitHub Actions:
# https://github.com/actions/virtual-environments/blob/main/images/linux/scripts/installers/miniconda.sh
MLFLOW_CONDA_HOME: /usr/share/miniconda
SPARK_LOCAL_IP: localhost
jobs:
regression_recipes_unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
pip install -r ./requirements.txt
pip install -r ./requirements/test-requirements.txt
- name: Run unit tests
run: |
export MLFLOW_RECIPES_PROFILE=local
pytest ./regression/tests