Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstarion committed Oct 12, 2024
1 parent 42672ee commit f910a8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CodeQuality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: dotnet tool install --global dotnet-coverage

- name: Start API
run: dotnet-coverage collect --project $GITHUB_WORKSPACE/CometServer/CometServer.csproj -c Debug --output integation-test-coverage.opencover.xml &
run: dotnet-coverage collect "dotnet run --project CometServer/CometServer.csproj -c Debug" --output integation-test-coverage.opencover.xml &

- name: Wait for API to start
run: sleep 10 # Adjust as necessary to ensure the API is up
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: dotnet tool install --global dotnet-coverage

- name: Start API
run: dotnet-coverage collect "dotnet run --project CometServer/CometServer.csproj -c Debug &"
run: dotnet-coverage collect "dotnet run --project CometServer/CometServer.csproj -c Debug" --output integation-test-coverage.opencover.xml &

- name: Wait for API to start
run: sleep 10 # Adjust as necessary to ensure the API is up
Expand Down

0 comments on commit f910a8e

Please sign in to comment.