blob: a05c7e759271813a625416b50ef18403d719c571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash -l
set -e
cd "$(dirname "$0")/.."
export PATH="/builds/gitlab-org/security-products/license-management/exe:/opt/gitlab/embedded/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
export RUBYLIB="/builds/gitlab-org/security-products/license-management/lib"
if ! command -v bundle; then
./bin/setup
fi
bundle exec rspec "$@" --format=progress --tag ~environment:offline
|