From 8dce1d8340d9418c99057b884e1504c462733953 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Sun, 2 Aug 2026 19:36:24 +0200 Subject: [PATCH 1/4] Ignore the Pester coverage report a local test run leaves in the working directory Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 456ca0f..66760d7 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,6 @@ outputs/* bin/ obj/ libs/ + +# Pester code coverage report written to the working directory by a local test run +coverage.xml From e16bb52c9cafb801cbc69cc2b6b094c3827dfedb Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 10 Sep 2026 13:41:30 +0200 Subject: [PATCH 2/4] Group PSModule ignore entries --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 66760d7..f8d75fd 100644 --- a/.gitignore +++ b/.gitignore @@ -9,13 +9,14 @@ # Local History for Visual Studio Code .history/* +# PSModule-based files # PSModule framework outputs folder outputs/* +# Pester code coverage report written to the working directory by a local test run +coverage.xml + # .Net build output bin/ obj/ libs/ - -# Pester code coverage report written to the working directory by a local test run -coverage.xml From d91e587c853092051e8fadc525b4388b36d46aa4 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 10 Sep 2026 13:44:10 +0200 Subject: [PATCH 3/4] Ignore PSModule-generated artifacts --- .gitignore | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index f8d75fd..0d0c96f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,12 +9,8 @@ # Local History for Visual Studio Code .history/* -# PSModule-based files -# PSModule framework outputs folder -outputs/* - -# Pester code coverage report written to the working directory by a local test run -coverage.xml +# PSModule-generated files +.PSModule/ # .Net build output bin/ From 965069152bdb1703ff705a3b7abf3daae29d74c7 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 10 Sep 2026 13:46:48 +0200 Subject: [PATCH 4/4] Anchor PSModule artifact ignore rule --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0d0c96f..cc9179a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ .history/* # PSModule-generated files -.PSModule/ +/.PSModule/ # .Net build output bin/