Skip to content

Serverless fix

Serverless fix #137

Workflow file for this run

name: Eureka Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install .
- name: Run linters
continue-on-error: true
run: |
make linters
- name: Run tests
run: |
pip show eureka_ml_insights
export skip_tests_with_missing_ds=1
export skip_slow_tests=1
pwd
make test