From 9af28e7d206c0e44a51bebd271990d0cc130c493 Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 27 May 2021 15:09:59 +0200 Subject: [PATCH] code cleanup --- .github/workflows/integration-tests.yaml | 12 ------------ integration-tests/engines.js | 2 ++ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index 2fe58cc5..8b92aa28 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -30,8 +30,6 @@ jobs: image: postgres env: POSTGRES_PASSWORD: Pwd2020Db - # ports: - # - 5432:5432 options: >- --health-cmd pg_isready --health-interval 10s @@ -40,17 +38,11 @@ jobs: mysql: image: mysql - # options: >- - # --default-authentication-plugin=mysql_native_password - # ports: - # - 15001:3306 env: MYSQL_ROOT_PASSWORD: Pwd2020Db mssql: image: mcr.microsoft.com/mssql/server - # ports: - # - 15002:1433 env: ACCEPT_EULA: Y SA_PASSWORD: Pwd2020Db @@ -58,7 +50,3 @@ jobs: cockroachdb: image: cockroachdb/cockroach - # ports: - # - 15003:26257 - # options: >- - # start-single-node --insecure diff --git a/integration-tests/engines.js b/integration-tests/engines.js index a4c26e50..73891dd1 100644 --- a/integration-tests/engines.js +++ b/integration-tests/engines.js @@ -20,6 +20,7 @@ const engines = [ server: 'localhost', port: 15001, }, + skipOnGithub: true, objects: [views], }, { @@ -90,6 +91,7 @@ const engines = [ server: 'localhost', port: 15003, }, + skipOnGithub: true, objects: [views], }, ];