Skip to content

Commit

Permalink
run new integration tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasht86 committed Jan 10, 2025
1 parent 38dc7a4 commit 3d40121
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/integration-except-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@ on:
- master

jobs:
integration-except-cloud:
integration-tests:
runs-on: ubuntu-latest
strategy:
matrix:
test-suite:
[
"test_integration_docker.py",
"test_integration_grouping.py",
"test_integration_queries.py",
]
steps:
- name: Free disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
Expand All @@ -25,11 +33,11 @@ jobs:
cache: "pip"
cache-dependency-path: |
pyproject.toml
- name: Install dependencies
run: |
pip install -e .[dev]
- name: Run integration docker
- name: Run integration test
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
pytest tests/integration/${{ matrix.test-suite }} -s -v

0 comments on commit 3d40121

Please sign in to comment.