From 38dc7a4bc8d4e7d5d99689f4c9d7134fc9ddd83c Mon Sep 17 00:00:00 2001 From: thomasht86 Date: Fri, 10 Jan 2025 15:09:11 +0100 Subject: [PATCH] also run new integration tests --- .github/workflows/integration-except-cloud.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-except-cloud.yml b/.github/workflows/integration-except-cloud.yml index 64db0d94..dcb5fdc6 100644 --- a/.github/workflows/integration-except-cloud.yml +++ b/.github/workflows/integration-except-cloud.yml @@ -21,8 +21,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.9' - cache: 'pip' + python-version: "3.9" + cache: "pip" cache-dependency-path: | pyproject.toml - name: Install dependencies @@ -31,3 +31,5 @@ jobs: - name: Run integration docker run: | pytest tests/integration/test_integration_docker.py -s -v + pytest tests/integration/test_integration_grouping.py -s -v + pytest tests/integration/test_integration_queries.py -s -v