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]