AB#417 Tests of LogSettings. #240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI on push to branch | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "**" | |
jobs: | |
run-unittests: | |
name: Run unittests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: "**/test-requirements.txt" | |
- name: Install test dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r test-requirements.txt | |
- name: Run unittests via pytest | |
run: pytest -vv -m "not endtoend and not singularity_integration and not conda_integration" |