From 7ee6b6757190be3efe989e34a49b7c24762dc7b4 Mon Sep 17 00:00:00 2001 From: Simone Scarduzio Date: Mon, 22 Sep 2025 23:24:22 +0200 Subject: [PATCH] fix --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fca1a9..468431a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: | - uv pip install --system ruff + uv pip install --system -e ".[dev]" - name: Run ruff check run: | @@ -56,11 +56,11 @@ jobs: - name: Install dependencies run: | - uv pip install --system mypy boto3-stubs[s3] types-python-dateutil + uv pip install --system -e ".[dev]" - name: Run mypy run: | - uv run mypy src tests + uv run mypy src test: runs-on: ubuntu-latest @@ -161,7 +161,7 @@ jobs: AWS_DEFAULT_REGION: us-east-1 AWS_ENDPOINT_URL: http://localhost:4566 run: | - uv run pytest tests/e2e -v -m e2e --tb=short + uv run pytest tests/e2e -v --tb=short docker-push: needs: [lint, typecheck, test, docker-build, e2e-test]