Skip to content

Commit eba0481

Browse files
committed
Fix tests
1 parent e08e36e commit eba0481

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/tests-runner.yml

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ jobs:
121121
sudo apt-get install -y azure-functions-core-tools-4
122122
123123
- name: Test ${{ matrix.tests.project }}
124+
env:
125+
CI: false
124126
run: |
125127
${{ matrix.tests.command }}
126128
@@ -184,6 +186,7 @@ jobs:
184186
185187
- name: Test ${{ matrix.tests.project }}
186188
env:
189+
CI: false
187190
BUILT_NUGETS_PATH: ${{ github.workspace }}/artifacts/packages/Release/Shipping
188191
run: |
189192
${{ matrix.tests.command }}

eng/TestRunsheetBuilder/TestRunsheetBuilder.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
<_TestRunnerWindows>./eng/build.ps1</_TestRunnerWindows>
6161
<_TestRunnerLinux>./eng/build.sh</_TestRunnerLinux>
62-
<_TestCommand>-restore -build -test -projects &quot;$(_RelativeTestProjectPath)&quot; /bl:&quot;$(_RelativeTestBinLog)&quot; -c $(Configuration) -ci /p:CI=false</_TestCommand>
62+
<_TestCommand>-restore -build -test -projects &quot;$(_RelativeTestProjectPath)&quot; /bl:&quot;$(_RelativeTestBinLog)&quot; -c $(Configuration) -ci</_TestCommand>
6363

6464
<!-- Tests requiring packages must be run in the "out of repo" mode -->
6565
<_TestCommand Condition=" '$(_RequiresPackages)' == 'true' ">$(_TestCommand) /p:TestsRunningOutsideOfRepo=true</_TestCommand>

tests/Aspire.Playground.Tests/Aspire.Playground.Tests.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
<ItemGroup>
7070
<ProjectReference Include="$(PlaygroundSourceDir)AspireEventHub/EventHubs.AppHost/EventHubs.AppHost.csproj" />
7171
<ProjectReference Include="$(PlaygroundSourceDir)AzureFunctionsEndToEnd/AzureFunctionsEndToEnd.AppHost/AzureFunctionsEndToEnd.AppHost.csproj" />
72+
<ProjectReference Include="$(PlaygroundSourceDir)AzureFunctionsEndToEnd/AzureFunctionsEndToEnd.Functions/AzureFunctionsEndToEnd.Functions.csproj" />
7273
<ProjectReference Include="$(PlaygroundSourceDir)AzureStorageEndToEnd/AzureStorageEndToEnd.AppHost/AzureStorageEndToEnd.AppHost.csproj" />
7374
<ProjectReference Include="$(PlaygroundSourceDir)CosmosEndToEnd/CosmosEndToEnd.AppHost/CosmosEndToEnd.AppHost.csproj" />
7475
<ProjectReference Include="$(PlaygroundSourceDir)kafka/KafkaBasic.AppHost/KafkaBasic.AppHost.csproj" />

0 commit comments

Comments
 (0)