From ed7f1b9e7086c5878713c49a28fd9fd883bde956 Mon Sep 17 00:00:00 2001 From: Viktor Ashirov Date: Mon, 20 Jan 2025 11:06:54 +0100 Subject: [PATCH] Fix tests for RHEL 8.10 --- main.fmf | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/main.fmf b/main.fmf index 76d16bf..ef581ec 100644 --- a/main.fmf +++ b/main.fmf @@ -5,13 +5,16 @@ execute: how: tmt prepare: + - name: enable 389-ds module + how: shell + script: dnf module enable -y 389-ds - name: install required packages how: install - package: [389-ds-base, git, pytest] + package: [389-ds-base, git, python3-pytest, 389-ds-base-snmp] - name: clone repo how: shell - script: git clone https://github.com/389ds/389-ds-base /root/ds + script: git clone -b rhel-8.10.0 https://gitlab.cee.redhat.com/ldap-team/389-ds-base.git /root/ds /test: /upstream_basic: - test: pytest -v /root/ds/dirsrvtests/tests/suites/basic/basic_test.py + test: pytest-3 -v /root/ds/dirsrvtests/tests/suites/basic/basic_test.py duration: 30m