#533 Install deps for rpm-py-installer
Merged 4 years ago by gnaponie. Opened 4 years ago by lucarval.
lucarval/freshmaker fix-rpm-py-install  into  master

file modified
+5 -1
@@ -48,7 +48,11 @@ 

      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'

file modified
+1
@@ -51,6 +51,7 @@ 

  [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}