1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

debug: travis with postgres 10

This commit is contained in:
ivaosthu 2019-08-27 23:27:24 +02:00 committed by Ivar Conradi Østhus
parent f62d992be7
commit ec4d169874
3 changed files with 2 additions and 4 deletions

View File

@ -19,7 +19,7 @@ notifications:
slack:
secure: MroremSKwtQkwPbrXjgs9hIqKTCDKk7bAIXXzjcS6wXC9uRaFgwFaW8oO3vBxtWa4BL44EQBLE/rboWgqFER62+XgXNgEqGZqrcJHJvby4r+dUNMPI64OZvWdIiydIYxLo8C1C4x5PqBup0xuLq8h/SBnNvA2NLgkjuvzOi+v/Q=
addons:
postgresql: '9.6'
postgresql: '10'
cache:
yarn: true
deploy:

View File

@ -40,7 +40,7 @@
"db-migrate": "db-migrate",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "NODE_ENV=test PORT=4243 ava --serial",
"test": "NODE_ENV=test PORT=4243 ava",
"test:docker": "./scripts/docker-postgres.sh",
"test:watch": "npm run test -- --watch",
"test:pg-virtualenv": "pg_virtualenv npm run test:pg-virtualenv-chai",

View File

@ -59,7 +59,6 @@ test.serial('does not not accept gibberish', async t => {
.then(destroy);
});
/* debugging travis
test.serial('imports strategies and features from json file', async t => {
t.plan(0);
const { request, destroy } = await setupApp('state_api_serial');
@ -79,4 +78,3 @@ test.serial('imports strategies and features from yaml file', async t => {
.expect(202)
.then(destroy);
});
*/