mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
13 lines
496 B
Bash
Executable File
13 lines
496 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC" = "" ]; then
|
|
KNAPSACK_PRO_ENDPOINT=https://api-disabled-for-fork.knapsackpro.com \
|
|
KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC=disabled-for-fork \
|
|
KNAPSACK_PRO_MAX_REQUEST_RETRIES=0 \
|
|
bundle exec rake knapsack_pro:rspec # use Regular Mode here always
|
|
else
|
|
# Regular Mode
|
|
bundle exec rake knapsack_pro:rspec
|
|
|
|
# or you can use Queue Mode instead of Regular Mode if you like
|
|
# bundle exec rake knapsack_pro:queue:rspec
|
|
fi |