Skip to content

error in documentation #69

error in documentation

error in documentation #69

name: test_on_push
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11] # Ajustado a la versión que usas
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest tests/ --ignore tests/integration/test_wandb_optimizer.py --cov=framework3 --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v3