Skip to content

Investigating

Investigating #130

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ develop ]
jobs:
tests:
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: ['3.8', '3.12']
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install "git+https://[email protected]/Avaiga/taipy.git@fix/sqlrepo-integration-test" statsmodels Flask-Testing pytest scikit-learn
timeout-minutes: 30
- name: Pytest test churn_fs
run: pytest tests -m "churn_fs"
timeout-minutes: 10
- name: Pytest test churn_sql
run: pytest tests -m "churn_sql"
timeout-minutes: 10
- name: Pytest test example_fs
run: pytest tests -m "example_fs"
timeout-minutes: 10
- name: Pytest test example_sql
run: pytest tests -m "example_sql"
timeout-minutes: 10
- name: Pytest test
run: pytest tests -m "not churn_sql and not churn_fs and not example_sql and not example_fs"
timeout-minutes: 30