From f4413b007ac857e04599f28dc01884cd6d54eafd Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:52:19 +0100 Subject: [PATCH 1/2] GH Actions: include hidden files when uploading `~/cylc-run` artifact --- .github/workflows/bash.yml | 1 + .github/workflows/test_fast.yml | 1 + .github/workflows/test_functional.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/bash.yml b/.github/workflows/bash.yml index eb34e3ad76d..9938c4c4ec1 100644 --- a/.github/workflows/bash.yml +++ b/.github/workflows/bash.yml @@ -89,3 +89,4 @@ jobs: with: name: 'cylc-run (bash-${{ matrix.bash-version }})' path: cylc-run + include-hidden-files: true diff --git a/.github/workflows/test_fast.yml b/.github/workflows/test_fast.yml index db1a7335553..b58bc50ed99 100644 --- a/.github/workflows/test_fast.yml +++ b/.github/workflows/test_fast.yml @@ -75,6 +75,7 @@ jobs: with: name: cylc-run (${{ matrix.os }} py-${{ matrix.python-version }}) path: ~/cylc-run/ + include-hidden-files: true - name: Coverage report run: | diff --git a/.github/workflows/test_functional.yml b/.github/workflows/test_functional.yml index 116620cdf35..f055353d904 100644 --- a/.github/workflows/test_functional.yml +++ b/.github/workflows/test_functional.yml @@ -282,6 +282,7 @@ jobs: with: name: cylc-run (${{ steps.uploadname.outputs.uploadname }}) path: ~/cylc-run/ + include-hidden-files: true - name: Fetch Remote Coverage if: env.REMOTE_PLATFORM == 'true' From c087dc2f81aad8a865d572da03c3fd4efeb5bca3 Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Wed, 21 Aug 2024 11:01:56 +0100 Subject: [PATCH 2/2] Flake8: remove wrongly ignored error code (#6311) --- tox.ini | 3 --- 1 file changed, 3 deletions(-) diff --git a/tox.ini b/tox.ini index d9954dbb7e8..87d23419730 100644 --- a/tox.ini +++ b/tox.ini @@ -8,9 +8,6 @@ ignore= W504 ; "experimental" SIM9xx rules (flake8-simplify) SIM9 - ; suggests using f"{!r}" instead of manual quotes (flake8-bugbear) - ; Doesn't work at 3.7 - B028 per-file-ignores= ; TYPE_CHECKING block suggestions