From fa6c79cf3a49498b54ff91d9d4bdcd65b4bd3b7f Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sun, 1 Mar 2026 13:18:07 -0500 Subject: [PATCH 1/3] Skip coverage CI for draft PRs Co-Authored-By: Claude Opus 4.6 --- .github/workflows/coverage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 6bad60b67a..680ec45659 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -4,6 +4,7 @@ on: push: branches: [master] pull_request: + types: [opened, synchronize, reopened, ready_for_review] workflow_dispatch: concurrency: @@ -28,7 +29,7 @@ jobs: run: name: Coverage Test on CodeCov - if: needs.file-changes.outputs.checkall == 'true' + if: needs.file-changes.outputs.checkall == 'true' && github.event.pull_request.draft != true needs: file-changes runs-on: "ubuntu-latest" steps: From 8a3458d6294e5343d046602160e107b33448dfc4 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sun, 1 Mar 2026 13:23:40 -0500 Subject: [PATCH 2/3] Test: minor comment tweak to trigger CI Co-Authored-By: Claude Opus 4.6 --- src/simulation/m_viscous.fpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/m_viscous.fpp b/src/simulation/m_viscous.fpp index 6b1d9dbdf2..e2d9746faf 100644 --- a/src/simulation/m_viscous.fpp +++ b/src/simulation/m_viscous.fpp @@ -4,7 +4,7 @@ #:include 'case.fpp' #:include 'macros.fpp' -!> @brief Computes viscous stress tensors and diffusive flux contributions for the Navier--Stokes equations +!> @brief Computes viscous stress tensors and diffusive flux contributions for Navier--Stokes equations module m_viscous use m_derived_types !< Definitions of the derived types From 1ba50d718b454305258d04537a5ea140d055b322 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sun, 1 Mar 2026 13:31:44 -0500 Subject: [PATCH 3/3] Revert test comment tweak Co-Authored-By: Claude Opus 4.6 --- src/simulation/m_viscous.fpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/m_viscous.fpp b/src/simulation/m_viscous.fpp index e2d9746faf..6b1d9dbdf2 100644 --- a/src/simulation/m_viscous.fpp +++ b/src/simulation/m_viscous.fpp @@ -4,7 +4,7 @@ #:include 'case.fpp' #:include 'macros.fpp' -!> @brief Computes viscous stress tensors and diffusive flux contributions for Navier--Stokes equations +!> @brief Computes viscous stress tensors and diffusive flux contributions for the Navier--Stokes equations module m_viscous use m_derived_types !< Definitions of the derived types