Skip to content

Thomasht86/querybuilder documentation #397

Thomasht86/querybuilder documentation

Thomasht86/querybuilder documentation #397

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