test: fix port
Some checks failed
Test with Different Databases / test (sqlite) (pull_request) Failing after 1s
Test with Different Databases / test (postgresql) (pull_request) Failing after 1s
.NET Test Pipeline / build-and-test (pull_request) Successful in 3m4s
Test with Different Databases / test (mysql) (pull_request) Failing after 3m10s

This commit is contained in:
Polianin Nikita 2024-05-31 01:16:13 +03:00
parent 815c860dc0
commit b67f0a82ed

View File

@ -25,7 +25,7 @@ jobs:
--health-timeout 5s
--health-retries 5
ports:
- 3306:3306
- 5555:3306
postgres:
image: postgres:latest
@ -39,7 +39,7 @@ jobs:
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
- 6666:5432
steps:
- uses: actions/checkout@v4
@ -66,12 +66,12 @@ jobs:
- name: Modify configuration for MySQL
if: matrix.db-provider == 'mysql'
run: |
jq '.DbSettings.TypeDatabase = 0 | .DbSettings.ConnectionStringSql = "Server=127.0.0.1;Port=3306;Database=testdb;Uid=root;Pwd=root;"' Settings.json > temp.json && mv temp.json Settings.json
jq '.DbSettings.TypeDatabase = 0 | .DbSettings.ConnectionStringSql = "Server=127.0.0.1;Port=5555;Database=testdb;Uid=root;Pwd=root;"' Settings.json > temp.json && mv temp.json Settings.json
- name: Modify configuration for PostgreSQL
if: matrix.db-provider == 'postgresql'
run: |
jq '.DbSettings.TypeDatabase = 2 | .DbSettings.ConnectionStringSql = "Host=127.0.0.1;Port=5432;Database=testdb;Username=postgres;Password=postgres"' Settings.json > temp.json && mv temp.json Settings.json
jq '.DbSettings.TypeDatabase = 2 | .DbSettings.ConnectionStringSql = "Host=127.0.0.1;Port=6666;Database=testdb;Username=postgres;Password=postgres"' Settings.json > temp.json && mv temp.json Settings.json
- name: Run tests
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal