Skip to content

Commit

Permalink
Integration testS
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Oct 3, 2024
1 parent 7a98b02 commit 68cbe65
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Integration tests

on: [push, pull_request]

jobs:
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: PDM installation
run: pip install --user pdm
- name: Install dependencies
run: pdm install
- name: Install devel dependencies
run: pdm install --dev
- name: Run integration tests
run: pdm run python -m pytest -m 'not redis' tests/integration --cov=ols --cov=runner --cov-report term-missing

0 comments on commit 68cbe65

Please sign in to comment.