From 326bc74a48f5df722daa24f85be63e1ee7abbca2 Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Tue, 19 Apr 2022 11:53:10 -0400 Subject: [PATCH 1/2] Pin rstcheck version to 3.3.1 for sanity tests Signed-off-by: GomathiselviS --- tests/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Containerfile b/tests/Containerfile index 1d9b1c8..937ad4b 100644 --- a/tests/Containerfile +++ b/tests/Containerfile @@ -11,11 +11,11 @@ RUN mkdir -p /tmp/src \ RUN if [ -f sanity.txt ] ; then \ echo "Installing sanity.txt requirements" ; \ cat sanity.txt | sort -u >> /tmp/src/requirements.txt ; \ + sed -i 's/rstcheck/rstcheck==3.1.1/' /tmp/src/requirements.txt ; \ else \ echo "Installing sanity.*.txt requirements" ; \ cat sanity.*.txt | sort -u >> /tmp/src/requirements.txt ; \ fi - FROM quay.io/ansible/python-builder:latest as builder # ============================================================================= From 025f9678b43cf342a2efb4f3c76d1484bbe24ba3 Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Tue, 19 Apr 2022 11:54:39 -0400 Subject: [PATCH 2/2] fixed version number --- tests/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Containerfile b/tests/Containerfile index 937ad4b..8e65035 100644 --- a/tests/Containerfile +++ b/tests/Containerfile @@ -11,7 +11,7 @@ RUN mkdir -p /tmp/src \ RUN if [ -f sanity.txt ] ; then \ echo "Installing sanity.txt requirements" ; \ cat sanity.txt | sort -u >> /tmp/src/requirements.txt ; \ - sed -i 's/rstcheck/rstcheck==3.1.1/' /tmp/src/requirements.txt ; \ + sed -i 's/rstcheck/rstcheck==3.3.1/' /tmp/src/requirements.txt ; \ else \ echo "Installing sanity.*.txt requirements" ; \ cat sanity.*.txt | sort -u >> /tmp/src/requirements.txt ; \