Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
9fa2ddefa1 | |||
cc6a3bb80b | |||
9326992f8b |
@ -1,13 +1,8 @@
|
||||
// Load the test config file
|
||||
const configFile = process.env.CI ? './config-ci.json' : './config.json';
|
||||
const config = require(configFile);
|
||||
|
||||
if (process.env.CI !== undefined) {
|
||||
console.log(config);
|
||||
}
|
||||
const configFile = './config.json';
|
||||
|
||||
module.exports = {
|
||||
config,
|
||||
config: require(configFile),
|
||||
tests: require('./base/tests'),
|
||||
promiseTestRunner: require('./base/adapterPromiseTestRunner')
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
"mysql2": {
|
||||
"driver": "mysql",
|
||||
"connection": {
|
||||
"host": "mysql",
|
||||
"host": "mysql2",
|
||||
"user": "test",
|
||||
"password": "test",
|
||||
"database": "test"
|
||||
|
@ -8,3 +8,6 @@ set -xe
|
||||
# Install sqlite3
|
||||
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
|
||||
apk add --no-cache git yarn sqlite
|
||||
|
||||
# Replace test config with docker config file
|
||||
mv "./test/config-ci.json" "./test/config.json"
|
Loading…
Reference in New Issue
Block a user