We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4af11 commit 2809b9eCopy full SHA for 2809b9e
1 file changed
.github/workflows/ci.yml
@@ -214,11 +214,13 @@ jobs:
214
configuration: "StaticDebug"
215
platform: "x64"
216
version: "vs2022"
217
+ tests: "*"
218
219
- os: windows-latest
220
configuration: "StaticRelease"
221
222
223
224
225
runs-on: ${{ matrix.os }}
226
@@ -267,7 +269,7 @@ jobs:
267
269
$BC_TEST_SINGLETON = $BC_TEST_EXES.FullName;
268
270
Write-Host "Executing $BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" -ForegroundColor Yellow;
271
try {
- Invoke-Expression "$BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS"
272
+ Invoke-Expression "$BC_TEST_SINGLETON --run_test=${{ matrix.tests }} $env:BOOST_UNIT_TEST_OPTIONS"
273
}
274
catch {
275
$ERR = $_;
0 commit comments