Skip to content

Ml loops

Ml loops #17

name: (Without Mongo) Tests on py11
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 40
env:
MONGO_ENABLED: false
if: "!contains(github.event.head_commit.message, 'CI Bot')"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Show OS Info
run: '[[ "$OSTYPE" == "linux-gnu"* ]] && { echo "OS Type: Linux"; (command -v lsb_release &> /dev/null && lsb_release -a) || cat /etc/os-release; uname -r; } || [[ "$OSTYPE" == "darwin"* ]] && { echo "OS Type: macOS"; sw_vers; uname -r; } || echo "Unsupported OS type: $OSTYPE"'
- name: Start docker compose with redis
run: make services
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Show Python version
run: python --version && pip --version
- name: Test examples
run: bash .github/workflows/run_examples.sh examples false # without mongo
- name: Install all dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[all]
python -m pip install .[ml_dev]
- name: List installed packages
run: pip list
- name: Test with pytest and redis
run: |
make tests
- name: Test notebooks with pytest and redis
run: pytest --nbmake "notebooks/" --nbmake-timeout=600 --ignore="notebooks/dask_from_CLI.ipynb" --ignore="notebooks/analytics.ipynb"
- name: Stop services
run: make services-stop