aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-01-24 06:53:08 -0500
committerJack Lloyd <[email protected]>2017-01-24 06:53:08 -0500
commitb49eaee216142ad6eab5ad437aea44b7897baf84 (patch)
treeb21bf52fdbd57698b4b8278f08cd96499c26a2b2 /src
parent0040b939829abdfdc085ea64fba8eb8b4d8c48f0 (diff)
Complete the rename of Python wrapper
Where referenced in CI scripts, docs and such
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci/travis/after_success.sh2
-rwxr-xr-xsrc/scripts/ci/travis/build.sh2
-rwxr-xr-xsrc/scripts/ci/travis/lint.sh4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/scripts/ci/travis/after_success.sh b/src/scripts/ci/travis/after_success.sh
index 769a8fac4..6e28e0d44 100755
--- a/src/scripts/ci/travis/after_success.sh
+++ b/src/scripts/ci/travis/after_success.sh
@@ -8,7 +8,7 @@ if [ "$BUILD_MODE" = "coverage" ]; then
/tmp/bin/lcov --gcov-tool "$GCOV" --remove $(pwd)/coverage.info.in 'tests/*' '/usr/*' --output-file $(pwd)/coverage.info
/tmp/bin/lcov --gcov-tool "$GCOV" --list $(pwd)/coverage.info
- LD_LIBRARY_PATH=. coverage run --branch src/python/botan.py
+ LD_LIBRARY_PATH=. coverage run --branch src/python/botan2.py
codecov
fi
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh
index b2dd482c8..71d33d1bb 100755
--- a/src/scripts/ci/travis/build.sh
+++ b/src/scripts/ci/travis/build.sh
@@ -186,7 +186,7 @@ then
for py in python2 python3
do
$py --version
- LD_LIBRARY_PATH=. $py src/python/botan.py
+ LD_LIBRARY_PATH=. $py src/python/botan2.py
done
fi
diff --git a/src/scripts/ci/travis/lint.sh b/src/scripts/ci/travis/lint.sh
index 36657e92a..91407c3b4 100755
--- a/src/scripts/ci/travis/lint.sh
+++ b/src/scripts/ci/travis/lint.sh
@@ -8,6 +8,6 @@ python2 -m pylint configure.py
echo "travis_fold:end:pylint_configure"
echo "travis_fold:start:pylint_botanpy"
-python3 -m pylint src/python/botan.py
-python2 -m pylint src/python/botan.py
+python3 -m pylint src/python/botan2.py
+python2 -m pylint src/python/botan2.py
echo "travis_fold:end:pylint_botanpy"