commit c4c372f28151094b8f86337d2fecc269d7802038
parent 2ccb9e9444be568cbd1552a0ea86ec58bc4a92e1
Author: Nick Mathewson <nickm@torproject.org>
Date: Tue, 11 Dec 2018 09:24:35 -0500
Merge remote-tracking branch 'rl1987/ticket28551'
Diffstat:
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml
@@ -193,6 +193,9 @@ install:
- if [[ "$RUST_OPTIONS" != "" ]]; then rustup --version; fi
- if [[ "$RUST_OPTIONS" != "" ]]; then rustc --version; fi
- if [[ "$RUST_OPTIONS" != "" ]]; then cargo --version; fi
+ ## Get python version
+ - python --version
+ ## run stem tests if they are enabled.
- if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
script:
diff --git a/changes/ticket28551 b/changes/ticket28551
@@ -0,0 +1,3 @@
+ o Minor features (Continuous Integration):
+ - Log Python version during each Travis CI job. Resolves issue
+ 28551.