Tox: Increase verbosity 90/31690/3
authorVratko Polak <vrpolak@cisco.com>
Fri, 19 Mar 2021 10:45:20 +0000 (11:45 +0100)
committerDave Wallace <dwallacelf@gmail.com>
Sat, 20 Mar 2021 21:12:57 +0000 (21:12 +0000)
CSIT is becoming stricter in avoiding downloads during run,
as everything should be pre-cached in executor image.
This change makes it easier for human to detect downloads.

Change-Id: If7085f96ef1033f7f9405a86232a3d39a239d3e1
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
resources/libraries/bash/entry/tox.sh

index 82b7ef5..c6ceb65 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
 #!/usr/bin/env bash
 
-# Copyright (c) 2019 Cisco and/or its affiliates.
+# Copyright (c) 2021 Cisco and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
@@ -29,4 +29,5 @@ source "${BASH_FUNCTION_DIR}/common.sh" || {
 common_dirs || die
 cd "${CSIT_DIR}" || die
 activate_virtualenv "${CSIT_DIR}" "${CSIT_DIR}/tox-requirements.txt" || die
 common_dirs || die
 cd "${CSIT_DIR}" || die
 activate_virtualenv "${CSIT_DIR}" "${CSIT_DIR}/tox-requirements.txt" || die
-tox  # Return code is turned into Jenkins job vote.
+# Verbosity is increased so console output shows any unwanted downloads.
+tox -vv  # Return code is turned into Jenkins job vote.