debug output

This commit is contained in:
Jean-Paul Calderone 2018-06-15 16:00:27 -04:00
parent d84773702d
commit a4fb33c235

View File

@ -72,6 +72,7 @@ jobs:
# readable.
working_directory: "/tmp"
command: |
env
/tmp/project/.circleci/setup-virtualenv.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" ${TAHOE_LAFS_TOX_ARGS}
- run: &RUN_TESTS
@ -80,6 +81,7 @@ jobs:
# if the working directory is not readable.
working_directory: "/tmp"
command: |
env
/tmp/project/.circleci/run-tests.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" ${TAHOE_LAFS_TOX_ARGS}
- store_artifacts: &STORE_TEST_LOG
@ -232,11 +234,13 @@ jobs:
- run:
<<: *SETUP_VIRTUALENV
command: |
env
sudo /tmp/project/.circleci/setup-virtualenv.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" ${TAHOE_LAFS_TOX_ARGS}
- run:
<<: *RUN_TESTS
command: |
env
sudo /tmp/project/.circleci/run-tests.sh "${TAHOE_LAFS_TOX_ENVIRONMENT}" ${TAHOE_LAFS_TOX_ARGS}
- store_artifacts: *STORE_TEST_LOG