Some checks failed
Auto Merge / auto-merge (push) Has been cancelled
Build / build (push) Has been cancelled
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CLA Assistant / CLA (push) Has been cancelled
Contributors / contributors (push) Has been cancelled
Coverage / coverage (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
Docker Publish / docker (push) Has been cancelled
Docs / docs (push) Has been cancelled
Format / format (push) Has been cancelled
GitHub Pages / deploy (push) Has been cancelled
Gitmoji / gitmoji (push) Has been cancelled
Integration / integration (push) Has been cancelled
Labeler / labeler (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Audit / pr-audit (push) Failing after 1s
Pre-Commit / pre-commit (push) Has been cancelled
Scorecards / scorecard (push) Has been cancelled
Security / security (push) Has been cancelled
Semantic Release / release (push) Has been cancelled
Snyk / snyk (push) Has been cancelled
Super-Linter / super-lint (push) Has been cancelled
Test / test (3.10) (push) Has been cancelled
Test / test (3.11) (push) Has been cancelled
Test / test (3.12) (push) Has been cancelled
Test / test (3.8) (push) Has been cancelled
Test / test (3.9) (push) Has been cancelled
Validate / validate (push) Has been cancelled
26 lines
566 B
YAML
26 lines
566 B
YAML
name: Integration
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
integration:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install pytest
|
|
- name: Run integration tests
|
|
run: |
|
|
python -m pytest tests/ -k integration -v
|