Skip to content

Commit 2ef9a29

Browse files
author
DenverM80
committed
Print the git rev hash before running tests in docker container; update SDK version shown in setup.py
1 parent 79f9a82 commit 2ef9a29

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docker/run_tests.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ echo DS3_ENDPOINT ${DS3_ENDPOINT}
66
echo DS3_SECRET_KEY ${DS3_SECRET_KEY}
77
echo DS3_ACCESS_KEY ${DS3_ACCESS_KEY}
88

9-
echo "cd /opt"
9+
set -x
10+
1011
cd /opt
1112

1213
if [ ${GIT_BRANCH} != "master" ]; then
13-
echo git clone ${GIT_REPO} --branch ${GIT_BRANCH} --single-branch
1414
git clone ${GIT_REPO} --branch ${GIT_BRANCH} --single-branch
1515
else
16-
echo git clone ${GIT_REPO}
1716
git clone ${GIT_REPO}
1817
fi
1918

20-
echo "cd ds3_python_sdk"
2119
cd ds3_python_sdk
20+
get rev-parse HEAD
2221
python setup.py install
2322

2423
cd tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from distutils.core import setup
1515

1616
setup(name='DS3 SDK',
17-
version='3.2.0',
17+
version='3.4.1',
1818
description='Python SDK and CLI for Spectra S3',
1919
author_email='[email protected]',
2020
packages=['ds3'])

0 commit comments

Comments
 (0)