We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e484b17 commit 4c8edffCopy full SHA for 4c8edff
1 file changed
.github/workflows/ci.yml
@@ -200,11 +200,13 @@ jobs:
200
configuration: "StaticDebug"
201
platform: "x64"
202
version: "vs2022"
203
+ tests: "*"
204
205
- os: windows-latest
206
configuration: "StaticRelease"
207
208
209
210
211
runs-on: ${{ matrix.os }}
212
@@ -253,7 +255,7 @@ jobs:
253
255
$BC_TEST_SINGLETON = $BC_TEST_EXES.FullName;
254
256
Write-Host "Executing $BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" -ForegroundColor Yellow;
257
try {
- Invoke-Expression "$BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS"
258
+ Invoke-Expression "$BC_TEST_SINGLETON --run_test=${{ matrix.tests }} $env:BOOST_UNIT_TEST_OPTIONS"
259
}
260
catch {
261
$ERR = $_;
0 commit comments