Skip to content

Commit

Permalink
Disable pooling on github's end*
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Sep 9, 2024
1 parent f668d2c commit c79ced7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ jobs:
run: dotnet build --no-restore
- name: Test with MariaDB
env:
DB_GANGS_CONNECTION: "Server=localhost;Port=3307;Database=gangs;User=root"
DB_GANGS_CONNECTION: "Server=localhost;Port=3307;Database=gangs;User=root;Pooling=false"
run: dotnet test src/GangsTest/GangsTest.csproj --no-build --verbosity normal
- name: Test with MySQL
env:
DB_GANGS_CONNECTION: "Server=localhost;Port=3306;Database=gangs;User=root"
DB_GANGS_CONNECTION: "Server=localhost;Port=3306;Database=gangs;User=root;Pooling=false"
run: dotnet test src/GangsTest/GangsTest.csproj --no-build --verbosity normal
- name: Generate Code Coverage Report
env:
Expand Down

0 comments on commit c79ced7

Please sign in to comment.