diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-12-06 15:26:34 +0200 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2018-12-06 15:26:34 +0200 |
commit | c31346ffb444065820407670ecf64b925e3775fc (patch) | |
tree | 355ea5af7bedd94a9d9a9be27883f17ee00d31da | |
parent | 46a321fbdde353d0c0b37556d7e3e81cd2b42979 (diff) | |
download | tor-c31346ffb444065820407670ecf64b925e3775fc.tar.gz tor-c31346ffb444065820407670ecf64b925e3775fc.zip |
Print Python version during each Travis CI job
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b5713d6933..2ea529e252 100644 --- 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: |