Merge pull request #2 from KoenigMjr/pytest-update-manual-run

Pytest update manual run
This commit is contained in:
KoenigMjr 2025-06-10 13:20:46 +02:00 committed by GitHub
commit fcc9634be2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -1,6 +1,9 @@
name: pytest
on: [push, pull_request]
on:
#workflow_dispatch: # Hier manuelles Starten erlauben, automatisch nach jedem Commit
push:
pull_request:
jobs:
build:
@ -8,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ${{matrix.os}}
steps:
@ -30,7 +33,7 @@ jobs:
pytest -c 'test/pytest.ini'
- name: Save artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test.log
name: test-${{ matrix.python-version }}.log
path: log/test.log

View file

@ -8,7 +8,7 @@ mkdocs
# for develope only
pytest
pytest-cov
flake8==4.0.1
flake8==6.1.0
pytest-flake8
pytest-flakes
pytest-randomly