From 2c21884a6114604ba3caeeb2620cebe89ebed990 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 07:45:11 +0200 Subject: [PATCH 1/8] Update run_pytest.yml + Pull-Request --- .github/workflows/run_pytest.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 1393799..be7414b 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -1,6 +1,9 @@ name: pytest -on: [push, pull_request] +on: + workflow_dispatch: # Hier manuelles Starten erlauben + push: + pull_request: jobs: build: From a877464c286ac78ff7ac2067c2c3f11aa4a4fd45 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 07:47:46 +0200 Subject: [PATCH 2/8] Update run_pytest.yml actions/upload-artifact@v3 to actions/upload-artifact@v4 From 9bcfcf6759aa48026d040329f45377844a12c088 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 07:50:03 +0200 Subject: [PATCH 3/8] Update run_pytest.yml actions/upload-artifact@v3 to actions/upload-artifact@v4 --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index be7414b..8cac602 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -33,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 path: log/test.log From d2225f899dc080321e3fcba667ea78aad5061a94 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 07:53:42 +0200 Subject: [PATCH 4/8] Update run_pytest.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Save artifacts name: test-${{ matrix.python-version }}.log Für jeden Test ein eigenes Logfile - aufgrund Fehler im Test --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 8cac602..05c35be 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -35,5 +35,5 @@ jobs: - name: Save artifacts uses: actions/upload-artifact@v4 with: - name: test.log + name: test-${{ matrix.python-version }}.log path: log/test.log From 0ba26181f38cfaf775b2d2c40965cadcc8e15276 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 08:03:47 +0200 Subject: [PATCH 5/8] Update requirements.txt Flake8 to 6.1.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0cca07d..8316ed1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 From 889d00e66028319e8264e120807a2e6d8a8b91b1 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:47:28 +0200 Subject: [PATCH 6/8] Aktualisieren von run_pytest.yml v3.8 entfernt --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 05c35be..c29c4e9 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -11,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'] runs-on: ${{matrix.os}} steps: From 3680f0a0d7a15dd164ed702888d2811b70b0c4b3 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 12:39:40 +0200 Subject: [PATCH 7/8] Aktualisieren von run_pytest.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v3.13 hinzugefügt --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index c29c4e9..73092a6 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['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: From 1a0f981c5ce14d05521520a32e689f12a3bdabe4 Mon Sep 17 00:00:00 2001 From: KoenigMjr <135820716+KoenigMjr@users.noreply.github.com> Date: Tue, 10 Jun 2025 13:18:35 +0200 Subject: [PATCH 8/8] Update run_pytest.yml Auskommentieren von workflow_dispatch --- .github/workflows/run_pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 73092a6..1a32372 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -1,7 +1,7 @@ name: pytest on: - workflow_dispatch: # Hier manuelles Starten erlauben + #workflow_dispatch: # Hier manuelles Starten erlauben, automatisch nach jedem Commit push: pull_request: