Admin: Introduce workflow to verify tests without Docker (#7050)

This commit is contained in:
Bert Blommers 2023-11-19 11:17:56 -01:00 committed by GitHub
parent 42dcd5cc3a
commit 27c6ea148c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,43 @@
# Verify that the `TESTS_SKIP_REQUIRES_DOCKER` environment variable works
# Or in other words:
# Verify that all tests that require Docker have the @requires_docker decorator
name: Unit test Without Docker
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *' # every day at 1AM
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install project dependencies
run: |
pip install -r requirements-dev.txt
pip install pytest-github-actions-annotate-failures
# We should be skipping all tests that require Docker
# Uninstalling the module enforces that all tests are indeed skipped
- name: Uninstall Docker
run: |
pip uninstall docker
- name: Test with pytest
env:
TESTS_SKIP_REQUIRES_DOCKER: true
run: |
pytest tests