We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a7187b commit 24bf7d3Copy full SHA for 24bf7d3
.github/workflows/ci.yml
@@ -207,11 +207,13 @@ jobs:
207
configuration: "StaticDebug"
208
platform: "x64"
209
version: "vs2022"
210
+ tests: "*"
211
212
- os: windows-latest
213
configuration: "StaticRelease"
214
215
216
217
218
runs-on: ${{ matrix.os }}
219
@@ -260,7 +262,7 @@ jobs:
260
262
$BC_TEST_SINGLETON = $BC_TEST_EXES.FullName;
261
263
Write-Host "Executing $BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" -ForegroundColor Yellow;
264
try {
- Invoke-Expression "$BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS"
265
+ Invoke-Expression "$BC_TEST_SINGLETON --run_test=${{ matrix.tests }} $env:BOOST_UNIT_TEST_OPTIONS"
266
}
267
catch {
268
$ERR = $_;
0 commit comments