Skip to content

Commit

Permalink
Use system pip in deb ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lamyj committed May 2, 2018
1 parent 3f1cc6c commit 9bb0df1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/deb/install
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PACKAGES="${PACKAGES} libdcmtk2-dev libicu-dev libjsoncpp-dev liblog4cpp5-dev zl
# Dependencies of Python wrappers
PACKAGES="${PACKAGES} libboost-python-dev ${PYTHON_PREFIX}-dev"
# Dependencies of unit tests
PACKAGES="${PACKAGES} dcmtk libboost-test-dev ${PYTHON_PREFIX}-nose"
PACKAGES="${PACKAGES} dcmtk libboost-test-dev ${PYTHON_PREFIX}-pip ${PYTHON_PREFIX}-nose"
# Coverage and static analysis
PACKAGES="${PACKAGES} cppcheck lcov wget"

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ matrix:
install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo -E sh ./.ci/deb/install; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then ./.ci/brew/install; fi
- if [ "${CC}" = "gcc" ]; then pip${Python} install -U --user cpp-coveralls; fi
- if [ "${CC}" = "gcc" ]; then /usr/bin/pip${Python} install -U --user cpp-coveralls; fi
- if [ "${CC}" = "gcc" ]; then export PATH=$(python -c 'import site; print(site.getuserbase())')/bin:${PATH}; fi
script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then ./.ci/deb/build; fi
Expand Down

0 comments on commit 9bb0df1

Please sign in to comment.