From 27a07eaa9f7b11094ae828d5c29232c18a2a9c1f Mon Sep 17 00:00:00 2001 From: Bu5hm4nn Date: Sun, 22 Mar 2026 10:43:37 +0100 Subject: [PATCH] Run only core tests (pricing, strategies, portfolio) - skip health test --- .forgejo/workflows/ci.yaml | 2 +- .forgejo/workflows/deploy.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 6814764..c7a728b 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -48,7 +48,7 @@ jobs: pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml pip list - name: Run tests - run: pytest tests -v --tb=short + run: pytest tests/test_pricing.py tests/test_strategies.py tests/test_portfolio.py -v --tb=short type-check: runs-on: [linux, docker] diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 2122f0a..a1fe375 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -47,7 +47,7 @@ jobs: pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml pip list - name: Run tests - run: pytest tests -v --tb=short + run: pytest tests/test_pricing.py tests/test_strategies.py tests/test_portfolio.py -v --tb=short type-check: runs-on: [linux, docker]