Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zakstucke committed Jun 18, 2024
1 parent dd41dc7 commit ce1e678
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev_scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ replace_text () {

# Make sure redis is up and running:
ensure_redis () {
# In ci redis should be spun up as needed for tests manually.
if in_ci; then
return
fi

if ! redis-cli ping; then
if [ "$(uname)" == "Darwin" ]; then
brew services start redis
Expand Down

0 comments on commit ce1e678

Please sign in to comment.