From 37e15767f050e6cb608e98bfdd8778ab06999b64 Mon Sep 17 00:00:00 2001 From: Igor Lins e Silva <4753812+igorls@users.noreply.github.com> Date: Wed, 8 Apr 2026 11:11:15 -0300 Subject: [PATCH] ci: remove benchmark job from CI workflow Too heavy for CI (~2h per run). Benchmarks can be run locally with: pytest -m benchmark --bench-scale=small --bench-report=results.json --- .github/workflows/ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09ddda2..9fd8a0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,22 +20,6 @@ jobs: - run: pip install -e ".[dev]" - run: python -m pytest tests/ -v --ignore=tests/benchmarks - benchmark: - runs-on: ubuntu-latest - if: github.event_name == 'pull_request' - steps: - - uses: actions/checkout@v6 - - uses: actions/setup-python@v6 - with: - python-version: "3.11" - - run: pip install -e ".[dev]" - - run: python -m pytest tests/benchmarks/ -v -m "benchmark and not stress and not slow" --bench-scale=small --bench-report=bench-results.json - - uses: actions/upload-artifact@v6 - if: always() - with: - name: benchmark-results - path: bench-results.json - lint: runs-on: ubuntu-latest steps: