From bf89924b999e2c4e1102851f54374a5c5657d3ec Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Jun 09 2020 16:47:24 +0000 Subject: Install deps for rpm-py-installer Signed-off-by: Luiz Carvalho --- diff --git a/Jenkinsfile b/Jenkinsfile index 8f54561..eff519f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,11 @@ node('fedora-29') { stage('Prepare') { checkout scm // Install requirements for testing harness - sh 'sudo dnf -y install python3-tox python3-flake8 `cat yum-packages.txt`' + sh ''' + sudo dnf -y install python3-tox python3-flake8 \ + rpm-libs gcc rpm-devel krb5-devel openldap-devel koji \ + `cat yum-packages.txt` + ''' // The fedora-29 node has an older version of setuptools that causes // tox to fail processing the dependencies sh 'sudo dnf update -y python3-setuptools' diff --git a/tox.ini b/tox.ini index aa5b022..7cd3e8d 100644 --- a/tox.ini +++ b/tox.ini @@ -51,6 +51,7 @@ exclude = dev_scripts/*,freshmaker/migrations/*,.tox/*,build/*,__pycache__,scrip [testenv:docs] description = invoke sphinx-build to build the HTML docs basepython = python3 +sitepackages = True commands = python3 -m 'sphinx' {toxinidir}/docs "{toxinidir}/docs/_build/html" -W {posargs}