Sha256: 4a53d6afa8ed5aed3e4b0eeeb495a88c99af49125698a6eb4be75bb3c68d0099
Contents?: true
Size: 477 Bytes
Versions: 5
Compression:
Stored size: 477 Bytes
Contents
#!/usr/bin/env bash sed -i 's~@your_client_id@~'"${CLIENT_ID}"'~g' testConfig.json sed -i 's~@your_client_secret@~'"${CLIENT_SECRET}"'~g' testConfig.json sed -i 's~@base_url@~'"${BASE_URL}"'~g' testConfig.json sed -i 's~@async_base_url@~'"${BASE_ASYNC_URL}"'~g' testConfig.json sed -i 's~@base_auth_url@~'"${BASE_AUTH_URL}"'~g' testConfig.json mkdir testResults if [ "${ENABLE_TESTS}" = true ] then rspec spec --format RspecJunitFormatter --out testResults/rspec.xml fi
Version data entries
5 entries across 5 versions & 1 rubygems