diff options
author | René Korthaus <[email protected]> | 2016-02-20 21:17:16 +0100 |
---|---|---|
committer | René Korthaus <[email protected]> | 2016-02-20 21:17:16 +0100 |
commit | f684c8a8606c751156a6e37cc3500cfc9792d8e6 (patch) | |
tree | 221d1fa399af74d49c3bb6874abc0c22a58a4f2b /src/scripts | |
parent | 27cd00883bc2dbb8cb794bb80bec30291dd062f4 (diff) |
Add LD_LIBRARY_PATH to python coverage
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/travis/after_success.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/travis/after_success.sh b/src/scripts/ci/travis/after_success.sh index de5030c2d..a9acab3c9 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/usr/bin/lcov --gcov-tool "$GCOV" --remove coverage.info 'tests/*' '/usr/*' --output-file coverage.info /tmp/usr/bin/lcov --gcov-tool "$GCOV" --list coverage.info - coverage run --branch src/python/botan.py + LD_LIBRARY_PATH=. coverage run --branch src/python/botan.py codecov fi |