Skip to content

Update inspect_python_black.yml (#20) #32

Update inspect_python_black.yml (#20)

Update inspect_python_black.yml (#20) #32

name: Test
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
workflow_dispatch:
permissions:
contents: read
jobs:
complete_regression:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r worker/source/requirements.txt
- name: Run unit tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m unit
- name: Run integration tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m integration
- name: Run system tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m system