Paladox none | 4112ff2 | 2018-03-30 15:24:54 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | |||||
3 | if [[ -z "${TEMPLATE_NO_DEFAULT}" ]]; then | ||||
4 | bazel test \ | ||||
5 | --test_env="HOME=$HOME" \ | ||||
6 | //polygerrit-ui/app:all | ||||
7 | --test_tag_filters=template \ | ||||
8 | "$@" \ | ||||
9 | --test_output errors \ | ||||
10 | --nocache_test_results | ||||
11 | else | ||||
12 | bazel test \ | ||||
13 | --test_env="HOME=$HOME" \ | ||||
14 | "$@" \ | ||||
15 | --test_output errors \ | ||||
16 | --nocache_test_results | ||||
17 | fi |