9c2a2e749d
- Pass linters and lower-constrains jobs with Python 3.8 - Use master version of pylint only with python version >= 3.9 - Update requirements files - Fix install_bindeps.sh - Disable running DevStack jobs on ubuntu focal nodes Change-Id: Ie745fe5b5a08fe088fcf39edb312170c6cbdc5bb
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
INSTALL_PACKAGE=$(which yum || which apt)
|
|
|
|
if ! tox -e bindep ; then
|
|
.tox/bindep/bin/bindep -b | xargs -r sudo "${INSTALL_PACKAGE}" install -y
|
|
.tox/bindep/bin/bindep
|
|
fi
|