|
56 | 56 | dotnet-version: |
|
57 | 57 | 8.0.x
|
58 | 58 | - name: Test
|
59 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 59 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
60 | 60 | env:
|
61 | 61 | ORLEANSREDISCONNECTIONSTRING: "localhost:6379,ssl=False,abortConnect=False"
|
62 | 62 | - name: Archive Test Results
|
|
83 | 83 | dotnet-version: |
|
84 | 84 | 8.0.x
|
85 | 85 | - name: Test
|
86 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Clustering)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 86 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Clustering)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
87 | 87 | env:
|
88 | 88 | CASSANDRAVERSION: ${{ matrix.dbversion }}
|
89 | 89 | - name: Archive Test Results
|
@@ -122,7 +122,7 @@ jobs:
|
122 | 122 | dotnet-version: |
|
123 | 123 | 8.0.x
|
124 | 124 | - name: Test
|
125 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 125 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
126 | 126 | env:
|
127 | 127 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="False positive")]
|
128 | 128 | ORLEANSPOSTGRESCONNECTIONSTRING: "Server=127.0.0.1;Port=5432;Pooling=false;User Id=postgres;Password=postgres;SSL Mode=Disable"
|
@@ -157,7 +157,7 @@ jobs:
|
157 | 157 | dotnet-version: |
|
158 | 158 | 8.0.x
|
159 | 159 | - name: Test
|
160 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 160 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
161 | 161 | env:
|
162 | 162 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
163 | 163 | ORLEANSMYSQLCONNECTIONSTRING: "Server=127.0.0.1;Port=3306;UId=root;Pwd=mariadb;"
|
@@ -194,7 +194,7 @@ jobs:
|
194 | 194 | dotnet-version: |
|
195 | 195 | 8.0.x
|
196 | 196 | - name: Test
|
197 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 197 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
198 | 198 | env:
|
199 | 199 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
200 | 200 | ORLEANSMSSQLCONNECTIONSTRING: "Server=127.0.0.1,1433;User Id=SA;Password=yourWeak(!)Password;"
|
@@ -231,7 +231,7 @@ jobs:
|
231 | 231 | dotnet-version: |
|
232 | 232 | 8.0.x
|
233 | 233 | - name: Test
|
234 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&Category=${{ matrix.suite }}" --framework ${{ matrix.framework }} --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 234 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&Category=${{ matrix.suite }}" --framework ${{ matrix.framework }} --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
235 | 235 | env:
|
236 | 236 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
237 | 237 | # [SuppressMessage("Microsoft.Security", "CSCAN0090:ConfigFile", Justification="Not a secret")]
|
@@ -277,7 +277,7 @@ jobs:
|
277 | 277 | $IPAddress = "127.0.0.1" #(Get-NetIPAddress -AddressFamily IPV4 -AddressState Preferred -PrefixOrigin Manual | Select-Object IPAddress -First 1).IPAddress ?? "127.0.0.1"
|
278 | 278 | Add-Content -Path $env:GITHUB_ENV -Value "ORLEANSCOSMOSDBACCOUNTENDPOINT=https://$($IPAddress):8081/"
|
279 | 279 | - name: Test
|
280 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --framework ${{ matrix.framework }} --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 280 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --framework ${{ matrix.framework }} --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
281 | 281 | env:
|
282 | 282 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
283 | 283 | #ORLEANSCOSMOSDBACCOUNTENDPOINT: "https://127.0.0.1:8081/"
|
@@ -313,7 +313,7 @@ jobs:
|
313 | 313 | dotnet-version: |
|
314 | 314 | 8.0.x
|
315 | 315 | - name: Test
|
316 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 316 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
317 | 317 | env:
|
318 | 318 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
319 | 319 | # [SuppressMessage("Microsoft.Security", "CSCAN0090:ConfigFile", Justification="Not a secret")]
|
@@ -349,7 +349,7 @@ jobs:
|
349 | 349 | dotnet-version: |
|
350 | 350 | 8.0.x
|
351 | 351 | - name: Test
|
352 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 352 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
353 | 353 | env:
|
354 | 354 | ORLEANSZOOKEEPERCONNECTIONSTRING: "localhost:2181"
|
355 | 355 | - name: Archive Test Results
|
@@ -386,7 +386,7 @@ jobs:
|
386 | 386 | dotnet-version: |
|
387 | 387 | 8.0.x
|
388 | 388 | - name: Test
|
389 |
| - run: dotnet test --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
| 389 | + run: dotnet test --framework net8.0 --filter "Category=${{ matrix.provider }}&(Category=BVT|Category=SlowBVT|Category=Functional)" --blame-hang-timeout 10m --logger "trx" -- -parallel none -noshadow |
390 | 390 | env:
|
391 | 391 | ORLEANSDYNAMODBSERVICE: "http://127.0.0.1:8000"
|
392 | 392 | # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Not a secret")]
|
|
0 commit comments