Skip to content

Commit

Permalink
added additional appsettings.json and code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alianides committed Jul 18, 2024
1 parent 8640490 commit d17576c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/run-integrationTests-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ jobs:
echo "Running: docker exec ${DEV_CONTAINER_NAME} bash -c \"dotnet build /workspace/${{ inputs.app_name }}/src/spacesdk-client.csproj\""
docker exec ${DEV_CONTAINER_NAME} bash -c "dotnet build /workspace/${{ inputs.app_name }}/src/spacesdk-client.csproj"
# Build integrationTests
echo "Running: docker exec ${DEV_CONTAINER_NAME} bash -c \"dotnet build /workspace/${{ inputs.app_name }}/test/integrationTests/integrationTests.csproj\""
docker exec ${DEV_CONTAINER_NAME} bash -c "dotnet build /workspace/${{ inputs.app_name }}/test/integrationTests/integrationTests.csproj"
# Build debugClient
echo "Running: docker exec ${DEV_CONTAINER_NAME} bash -c \"dotnet build /workspace/${{ inputs.app_name }}/test/debugClient/debugClient.csproj\""
docker exec ${DEV_CONTAINER_NAME} bash -c "dotnet build /workspace/${{ inputs.app_name }}/test/debugClient/debugClient.csproj"
Expand Down
16 changes: 16 additions & 0 deletions test/integrationTests_python/appsettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"System.Net.Http": "Error",
"Microsoft.Azure.SpaceFx": "Information",
"Microsoft.Azure.SpaceFx.Core.Services.MessageReceiver": "Debug",
"Microsoft.Azure.SpaceFx.Core.Services.HeartbeatService": "Debug",
"Microsoft.Azure.SpaceFx.Core.Services.ResourceUtilizationMonitor": "Trace"
},
"Console": {
"TimestampFormat": "[yyyy-MM-dd HH:mm:ss] "
}
}
}
2 changes: 0 additions & 2 deletions test/integrationTests_python/integrationTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ def position_service():

def main():



print("Building SpaceFX Client")
spacefx.client.build()

Expand Down

0 comments on commit d17576c

Please sign in to comment.