diff --git a/.github/workflows/qsi-unit-tests.yml b/.github/workflows/qsi-unit-tests.yml index d4c9c972..84b2756e 100644 --- a/.github/workflows/qsi-unit-tests.yml +++ b/.github/workflows/qsi-unit-tests.yml @@ -16,16 +16,16 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: [ self-hosted, querypie ] services: mysql: - image: mysql:8.0.27 + image: mysql:latest env: MYSQL_USER: root MYSQL_PASSWORD: root MYSQL_ROOT_PASSWORD: root ports: - - 3306 + - 33066:3306 steps: - uses: actions/checkout@v2 diff --git a/Qsi.Tests/Vendor/MySql/MySqlTest.cs b/Qsi.Tests/Vendor/MySql/MySqlTest.cs index 66e8c570..6be1cd51 100644 --- a/Qsi.Tests/Vendor/MySql/MySqlTest.cs +++ b/Qsi.Tests/Vendor/MySql/MySqlTest.cs @@ -15,7 +15,7 @@ namespace Qsi.Tests.Vendor.MySql; -[TestFixture("server=localhost;port=3306;user id=root;password=root;pooling=False;allowuservariables=True", Category = "MySql")] +[TestFixture("server=localhost;port=33066;user id=root;password=root;pooling=False;allowuservariables=True", Category = "MySql")] public partial class MySqlTest : VendorTestBase { public MySqlTest(string connectionString) : base(connectionString)