From 1f005597573c7335d7ca1ff36315edd2758eb874 Mon Sep 17 00:00:00 2001 From: Mark Schofield <34426337+MarkSchofield@users.noreply.github.com> Date: Sat, 1 Jun 2024 10:31:35 -0700 Subject: [PATCH] Remove references to Pester tests --- README.md | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/README.md b/README.md index 1a10f3f..875c7e3 100644 --- a/README.md +++ b/README.md @@ -92,39 +92,6 @@ Note: Since WindowsToolchain uses a `.yaml` file for configuration, make sure to The [Toolchain CI](.\.github\workflows\ci.yaml) GitHub Workflow enforces the linting rules during PR and CI. -## Testing - -WindowsToolchain uses [Pester][pester] for testing the CMake files in the codebase. The tests are written for -[PowerShell Core][powershellcore] and checked into [the `Tests` folder](./Tests). To run the tests: - -1. Launch a [PowerShell Core][powershellcore] prompt. - - ```text - pwsh - ``` - -2. Make sure that you have [Pester][pester] installed. This only needs to be done once. - - ```powershell - Install-Module Pester - ``` - -3. Import the Pester module into the PowerShell Core session: - - ```powershell - Import-Module Pester - ``` - -4. Discover and run all tests: - - ```powershell - Invoke-Pester - ``` - -The [Toolchain CI](.\.github\workflows\ci.yaml) GitHub Workflow requires all tests to pass during PR and CI. - [cmake-toolchains]: https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html "CMake Toolchains" [cmakelang]: https://cmake-format.readthedocs.io/ "cmakelang" -[pester]: https://pester.dev/ "Pester" -[powershellcore]: https://learn.microsoft.com/en-us/powershell/ "PowerShell Core" [ewdk]: https://learn.microsoft.com/en-us/windows-hardware/drivers/develop/using-the-enterprise-wdk "Enterprise Windows Driver Kit"