-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Reuse Containers in tests; Add Test parameters (#1853)
* Make all build scripts indexed, cleanup unused plugin * Update dependencies * Add explicit SERVICE_HOST to avoid network issues with Docker 20.* on linux * Do not log ignored tests * Prevent db containers to restart in tests * Cleanup docker plugin usages * Fix db credentials * Add test name to parameters * Reduce columns iteration time * Reduce date time test time * Migrate to faster oracle container * Force drop table before test
- Loading branch information
Showing
86 changed files
with
2,406 additions
and
1,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
version: '3.1' | ||
|
||
services: | ||
mariadb: | ||
image: mariadb | ||
restart: always | ||
ports: | ||
- "3306" | ||
environment: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | ||
MYSQL_DATABASE: 'testdb' | ||
mariadb: | ||
image: mariadb | ||
restart: always | ||
ports: | ||
- "3000:3306" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: "Exposed_password_1!" | ||
MYSQL_DATABASE: "testdb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '3.1' | ||
version: "3.1" | ||
|
||
services: | ||
mysql: | ||
platform: linux/x86_64 | ||
image: mysql:5.7 | ||
restart: always | ||
ports: | ||
- "3306" | ||
environment: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | ||
MYSQL_DATABASE: 'testdb' | ||
mysql: | ||
platform: linux/x86_64 | ||
restart: always | ||
image: mysql:5.7 | ||
ports: | ||
- "3001:3306" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: "Exposed_password_1!" | ||
MYSQL_DATABASE: "testdb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
version: '3.1' | ||
|
||
services: | ||
mysql8: | ||
image: mysql:8.0 | ||
restart: always | ||
ports: | ||
- "3306" | ||
environment: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | ||
MYSQL_DATABASE: 'testdb' | ||
mysql8: | ||
image: mysql:8.0 | ||
restart: always | ||
ports: | ||
- "3002:3306" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: "Exposed_password_1!" | ||
MYSQL_DATABASE: "testdb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
version: '3.1' | ||
|
||
services: | ||
oracle: | ||
container_name: oracleDB | ||
image: quillbuilduser/oracle-18-xe:latest | ||
ports: | ||
- "1521" | ||
environment: | ||
WEB_CONSOLE: "true" | ||
DBCA_TOTAL_MEMORY: 1024 | ||
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
USE_UTF8_IF_CHARSET_EMPTY: "true" | ||
oracle: | ||
container_name: oracleDB | ||
restart: always | ||
image: gvenzl/oracle-xe:18-slim-faststart | ||
ports: | ||
- "3003:1521" | ||
environment: | ||
ORACLE_PASSWORD: "Oracle18" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: '3.1' | ||
|
||
services: | ||
postgres: | ||
image: postgres | ||
restart: always | ||
ports: | ||
- "3004:5432" | ||
environment: | ||
POSTGRES_USER: "root" | ||
POSTGRES_PASSWORD: "Exposed_password_1!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
buildSrc/src/main/kotlin/org/jetbrains/exposed/gradle/Accessors.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.