Skip to content

Commit

Permalink
increase blame timeout on unit tests, increase send new project size …
Browse files Browse the repository at this point in the history
…to 180mb
  • Loading branch information
hahn-kev committed Oct 17, 2023
1 parent c100f58 commit 1e15d88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lexbox-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Dotnet build
run: dotnet build
- name: Unit tests
run: dotnet test --logger xunit --results-directory ./test-results --filter "Category!=Integration" --blame-hang-timeout 5m
run: dotnet test --logger xunit --results-directory ./test-results --filter "Category!=Integration" --blame-hang-timeout 10m
- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ await apiTester
HgRunner.Run("""hg commit -m "first commit" """, sendReceiveParams.DestDir, 1, progress);

//add a bunch of small files, must be in separate commits otherwise hg runs out of memory. But we want the push to be large
const int totalSizeMb = 100;
const int totalSizeMb = 180;
const int fileCount = 10;
for (int i = 1; i <= fileCount; i++)
{
Expand Down

0 comments on commit 1e15d88

Please sign in to comment.