a3d9630336
Doing some cleanup in "scripts" folder. All integration like tests are moved under "test" directory (integration, bc, redis) and bash scripts are adjusted to reflect new location. As an addition "scripts/install-awscli.sh" was deleted as it was not used. Change-Id: I152905c4258f471a71f2d0e8731d91bb075e99c1
10 lines
249 B
Bash
Executable File
10 lines
249 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
export STORJ_REDIS_PORT=7379
|
|
|
|
# shellcheck source=/postgres-dev.sh
|
|
source "${SCRIPTDIR}/../postgres-dev.sh"
|
|
|
|
"${SCRIPTDIR}/test-sim-redis-up-and-down.sh"
|