tobiko/tools/install-bindeps.sh
Federico Ressi 9c2a2e749d Pass broken jobs with Python 3.8 (Ubuntu Focal and Fedora 32)
- 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
2020-12-10 13:00:04 +01:00

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