diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/build-vsperf.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ci/build-vsperf.sh b/ci/build-vsperf.sh index a8da6a80..cfe964ef 100755 --- a/ci/build-vsperf.sh +++ b/ci/build-vsperf.sh @@ -433,15 +433,6 @@ function dependencies_check() { sudo apt-get install -y $PACKAGE fi done - # install additional python packages into python environment - for PACKAGE in "pylint" ; do - if pip show $PACKAGE &> /dev/null ; then - printf " %-70s %-6s\n" $PACKAGE "OK" - else - printf " %-70s %-6s\n" $PACKAGE "missing" - pip install $PACKAGE - fi - done echo fi } |