Skip to content

Bump pytest from 8.2.2 to 8.3.1 #719

Bump pytest from 8.2.2 to 8.3.1

Bump pytest from 8.2.2 to 8.3.1 #719

Workflow file for this run

name: "Unittests"
on: [push]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11", "3.12"]
os: [ubuntu-latest] # we dropped windows-latest because the kroki container somehow wasn't available for windows10/amd64
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Create .env file
run: python create_env_file.py
- name: Start containers
run: docker-compose up -d
- name: Run the Unit Tests via Tox
run: |
tox -e tests