We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0a5d04 + 4ebe8b1 commit 3bbb86bCopy full SHA for 3bbb86b
.travis.yml
@@ -16,7 +16,7 @@ install:
16
-
17
18
script:
19
- ./test.sh
+ TRACE=1 ./test.sh
20
21
# TBD. Suppressing for now.
22
notifications:
test.sh
@@ -15,7 +15,15 @@
15
# limitations under the License.
set -e
-set -x
+
+# Enable tracing in this script off by setting the TRACE variable in your
+# environment to any value:
+#
+# $ TRACE=1 test.sh
23
+TRACE=${TRACE:""}
24
+if [ -n "$TRACE" ]; then
25
+ set -x
26
+fi
27
28
# Make sure, we run in the root of the repo and
29
# therefore run the tests on all packages
0 commit comments