fixing travis CI build

This commit is contained in:
Kononnable 2017-08-14 19:51:41 +02:00
parent 79044666c4
commit b39d271af8
2 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,8 @@ env:
- MSSQL_Skip=0 MSSQL_Host=localhost MSSQL_Port=1433 MSSQL_Username=sa MSSQL_Password=!Passw0rd MSSQL_Database=typeorm_mg POSTGRES_Skip=0 POSTGRES_Host=localhost POSTGRES_Port=5432 POSTGRES_Username=postgres POSTGRES_Password=!Passw0rd POSTGRES_Database=typeorm_mg MYSQL_Skip=0 MYSQL_Host=localhost MYSQL_Port=3306 MYSQL_Username=root MYSQL_Password=!Passw0rd MYSQL_Database=typeorm_mg MARIADB_Skip=0 MARIADB_Host=localhost MARIADB_Port=3307 MARIADB_Username=root MARIADB_Password=!Passw0rd MARIADB_Database=typeorm_mg
before_install:
- sudo service mysql stop
- sudo service postgresql stop
- docker-compose up -d

View File

@ -29,10 +29,10 @@ describe("integration tests", async function () {
let files = fs.readdirSync(examplesPathTS)
let dbDrivers: DriverType[] = []
if (process.env.MSSQL_Skip == '0') dbDrivers.push('mssql')
if (process.env.POSTGRES_Skip == '0') dbDrivers.push('postgres')
if (process.env.MYSQL_Skip == '0') dbDrivers.push('mysql')
if (process.env.MARIADB_Skip == '0') dbDrivers.push('mariadb')
if (process.env.MSSQL_Skip == '0') dbDrivers.push('mssql')
for (let folder of files) {