File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -110,16 +110,16 @@ db-up-dev:
110110# By setting the optional variable
111111# DATABASEPOOL_TEARDOWN
112112# the database containers will be removed after the test run completes. Default is `false`.
113- db-up-test :
114- ./scripts/start-test -dbs.sh
113+ db-up-ci :
114+ ./scripts/start-ci -dbs.sh
115115
116116db-down : db-down-dev db-down-test redis-down-dev
117117
118118db-down-dev :
119119 docker rm -f spi_dev
120120
121- db-down-test :
122- ./scripts/stop-test -dbs.sh
121+ db-down-ci :
122+ ./scripts/stop-ci -dbs.sh
123123
124124db-reset : db-down db-up migrate
125125
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Sets up the databases the same way we do in ci.yml
4+ # - no ports exposed
5+ # - connected to a bridge network
6+ # Tests need to be run from a container attached to the same network.
7+
38docker network create -d bridge spi_test 2> /dev/null
49
510for port in {0..7}; do
File renamed without changes.
You can’t perform that action at this time.
0 commit comments