File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -95,16 +95,16 @@ pipeline {
9595 }
9696 }
9797
98- // stage("RUN logging integration tests") {
99- // when {
100- // expression { params.RUN_SELENIUM_TESTS == true }
101- // }
102- // steps{
103- // sh """
104- // SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest ./apps/integration_tests/logging_tests.py::TestLoggings::test_auth_fhir_flows_logging
105- // """
106- // }
107- // }
98+ stage("RUN logging integration tests") {
99+ when {
100+ expression { params.RUN_SELENIUM_TESTS == true }
101+ }
102+ steps{
103+ sh """
104+ SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest -s ./apps/integration_tests/logging_tests.py::TestLoggings::test_auth_fhir_flows_logging
105+ """
106+ }
107+ }
108108
109109 stage("RUN selenium user and apps management tests") {
110110 when {
@@ -113,7 +113,7 @@ pipeline {
113113 steps{
114114 sh 'echo "RUN selenium tests - user account and app management tests"'
115115 sh """
116- SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest ./apps/integration_tests/selenium_accounts_tests.py::TestUserAndAppMgmt::testAccountAndAppMgmt
116+ SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest -s ./apps/integration_tests/selenium_accounts_tests.py::TestUserAndAppMgmt::testAccountAndAppMgmt
117117 """
118118 }
119119 }
@@ -133,7 +133,7 @@ pipeline {
133133 steps{
134134 sh 'echo "RUN selenium tests - testclient based authorization flow tests and data flow tests"'
135135 sh """
136- SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest ./apps/integration_tests/selenium_tests.py
136+ SELENIUM_HEADLESS=true USE_NEW_PERM_SCREEN=true pytest -s ./apps/integration_tests/selenium_tests.py
137137 """
138138 }
139139 }
You can’t perform that action at this time.
0 commit comments