README.md in knapsack_pro-0.35.0 vs README.md in knapsack_pro-0.36.0
- old
+ new
@@ -1023,12 +1023,16 @@
```
#!/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 \
- bundle exec rake knapsack_pro:rspec
+ bundle exec rake knapsack_pro:rspec # use Regular Mode here always
else
+ # Regular Mode
bundle exec rake knapsack_pro:rspec
+
+ # You can use Queue Mode instead of Regular Mode if you like
+ # bundle exec rake knapsack_pro:queue:rspec
fi
```
Now you can use `bin/knapsack_pro_rspec` command instead of `bundle exec rake knapsack_pro:rspec`.
Remember to follow other steps required for your CI provider.