Co-authored-by: Josh Klar <jklar@forem.com> Co-authored-by: Mac Siri <krairit.siri@gmail.com>
10 lines
545 B
Bash
Executable file
10 lines
545 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 \
|
|
KNAPSACK_PRO_CI_NODE_RETRY_COUNT=0 \
|
|
bundle exec rake "knapsack_pro:rspec[--force-color --format documentation --format RspecJunitFormatter --out tmp/rspec.xml]"
|
|
else
|
|
bundle exec rake "knapsack_pro:queue:rspec[--force-color --format documentation --format RspecJunitFormatter --out tmp/rspec.xml]"
|
|
fi
|