@@ -172,8 +172,6 @@ jobs:
172172
173173 - name : Install sdk for nuget based testing
174174 if : ${{ inputs.requiresTestSdk }}
175- env :
176- CI : false
177175 run : >
178176 ${{ env.DOTNET_SCRIPT }} build ${{ github.workspace }}/tests/workloads.proj
179177 /p:SkipPackageCheckForTemplatesTesting=true
@@ -188,8 +186,6 @@ jobs:
188186 - name : Compute test project path
189187 id : compute_project_path
190188 shell : pwsh
191- env :
192- CI : false
193189 run : |
194190 $testShortName = "${{ inputs.testShortName }}"
195191 $overrideTestProjectPath = "${{ inputs.testProjectPath }}"
@@ -213,8 +209,6 @@ jobs:
213209
214210 - name : Build test project
215211 if : ${{ ! inputs.requiresNugets }}
216- env :
217- CI : false
218212 run : >
219213 ${{ env.BUILD_SCRIPT }}
220214 -restore
@@ -226,8 +220,6 @@ jobs:
226220
227221 - name : Build and archive test project
228222 if : ${{ inputs.requiresNugets }}
229- env :
230- CI : false
231223 run : >
232224 ${{ env.BUILD_SCRIPT }} -restore -ci -build -projects ${{ env.TEST_PROJECT_PATH }}
233225 /p:PrepareForHelix=true
@@ -238,8 +230,6 @@ jobs:
238230 # Workaround for bug in Azure Functions Worker SDK. See https://github.com/Azure/azure-functions-dotnet-worker/issues/2969.
239231 - name : Rebuild for Azure Functions project
240232 if : inputs.testShortName == 'Playground'
241- env :
242- CI : false
243233 run : |
244234 ${{ env.DOTNET_SCRIPT }} build ${{ github.workspace }}/playground/AzureFunctionsEndToEnd/AzureFunctionsEndToEnd.Functions/AzureFunctionsEndToEnd.Functions.csproj /p:SkipUnstableEmulators=true
245235
@@ -284,7 +274,6 @@ jobs:
284274 if : ${{ inputs.requiresNugets }}
285275 working-directory : ${{ github.workspace }}/run-tests/
286276 env :
287- CI : false
288277 DCP_DIAGNOSTICS_LOG_LEVEL : debug
289278 DCP_DIAGNOSTICS_LOG_FOLDER : ${{ github.workspace }}/testresults/dcp
290279 BUILT_NUGETS_PATH : ${{ github.workspace }}/artifacts/packages/Debug/Shipping
@@ -308,7 +297,6 @@ jobs:
308297 if : ${{ ! inputs.requiresNugets }}
309298 id : run-tests
310299 env :
311- CI : false
312300 DCP_DIAGNOSTICS_LOG_LEVEL : debug
313301 DCP_DIAGNOSTICS_LOG_FOLDER : ${{ github.workspace }}/testresults/dcp
314302 # During restore and build, we use -ci, which causes NUGET_PACKAGES to point to a local cache (Arcade behavior).
@@ -402,8 +390,6 @@ jobs:
402390
403391 - name : Generate test results summary
404392 if : always()
405- env :
406- CI : false
407393 shell : pwsh
408394 run : |
409395 if (Test-Path "${{ github.workspace }}/testresults") {
0 commit comments