Merge pull request #1000 from vespa-engine/thomasht86/querybuilder-do… #398
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration - except cloud | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
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 | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
cache: "pip" | |
cache-dependency-path: | | |
pyproject.toml | |
- name: Install dependencies | |
run: | | |
pip install -e .[dev] | |
- name: Run integration test | |
run: | | |
pytest tests/integration/${{ matrix.test-suite }} -s -v |