File tree 1 file changed +4
-1
lines changed
tests/containers/workbenches/rstudio
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,15 @@ class TestRStudioImage:
25
25
APP_ROOT_HOME = "/opt/app-root/src"
26
26
27
27
@allure .issue ("RHOAIENG-17256" )
28
- def test_rmd_to_pdf_rendering (self , rstudio_image : str ) -> None :
28
+ def test_rmd_to_pdf_rendering (self , rstudio_image : docker . models . images . Image ) -> None :
29
29
"""
30
30
References:
31
31
https://stackoverflow.com/questions/40563479/relationship-between-r-markdown-knitr-pandoc-and-bookdown
32
32
https://www.earthdatascience.org/courses/earth-analytics/document-your-science/knit-rmarkdown-document-to-pdf/
33
33
"""
34
+ if "rhel" in rstudio_image .labels ['name' ]:
35
+ pytest .skip ("ISSUE-957, RHOAIENG-17256(comments): RStudio workbench on RHEL does not come with knitr preinstalled" )
36
+
34
37
container = WorkbenchContainer (image = rstudio_image , user = 1000 , group_add = [0 ])
35
38
try :
36
39
container .start (wait_for_readiness = False )
You can’t perform that action at this time.
0 commit comments