File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,15 +51,13 @@ jobs:
5151 shell : bash
5252 run : |
5353 if [[ "$RUNNER_OS" == "Windows" ]]; then
54- dotnet run --project test/NumSharp.UnitTest/NumSharp.UnitTest.csproj \
55- --configuration Release --no-build --framework net10.0 \
56- -- --treenode-filter '/*/*/*/*[Category!=OpenBugs]' --report-trx
54+ FILTER='/*/*/*/*[Category!=OpenBugs]'
5755 else
58- dotnet run --project test/NumSharp.UnitTest/NumSharp.UnitTest.csproj \
59- --configuration Release --no-build --framework net10.0 \
60- -- --treenode-filter '/*/*/*/*[Category!=OpenBugs]' \
61- --treenode-filter '/*/*/*/*[Category!=WindowsOnly]' --report-trx
56+ FILTER='/*/*/*/*[Category!=OpenBugs && Category!=WindowsOnly]'
6257 fi
58+ dotnet run --project test/NumSharp.UnitTest/NumSharp.UnitTest.csproj \
59+ --configuration Release --no-build --framework net10.0 \
60+ -- --treenode-filter "$FILTER" --report-trx
6361
6462 - name : Upload Test Results
6563 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments