From ee559c2c2ddf813fbcad32170a3c8c34d2364a31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zachar?= Date: Wed, 26 Jun 2024 17:12:51 +0200 Subject: [PATCH 1/3] tmt subpackage got renamed --- plans/integration.fmf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plans/integration.fmf b/plans/integration.fmf index 74544b0..eda98d4 100644 --- a/plans/integration.fmf +++ b/plans/integration.fmf @@ -9,7 +9,7 @@ prepare: package: - python3-pip - tmt - - tmt-test-convert + - tmt+test-convert - name: Install requre script: pip3 install "typing-extensions>=3.7.4.3" requre - name: Create default nitrate config From 7bd71d6660ac0063b98f5a0a45d7853b9cf85434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pl=C3=ADchal?= Date: Thu, 27 Jun 2024 12:44:51 +0200 Subject: [PATCH 2/3] Add a simple config --- docs/conf.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/conf.py diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..001cc6f --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,27 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'nitrate' +copyright = 'Red Hat' +author = 'Petr Šplíchal' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [] + +templates_path = ['_templates'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + +root_doc = 'index' + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'alabaster' +html_static_path = ['_static'] From b308bea1c9ce6108c7143db9dabae9c24fda332e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pl=C3=ADchal?= Date: Thu, 27 Jun 2024 10:23:12 +0200 Subject: [PATCH 3/3] Do not run integration tests with `tmt` on `el8` --- plans/integration.fmf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plans/integration.fmf b/plans/integration.fmf index eda98d4..3c1cead 100644 --- a/plans/integration.fmf +++ b/plans/integration.fmf @@ -18,5 +18,5 @@ execute: how: tmt adjust: enabled: false - when: distro == centos-7 - because: there is no tmt + when: distro == centos-7 or distro == centos-stream-8 + because: tmt is not supported there