Skip to content

Commit 5fb716d

Browse files
committed
add pytest -s to see stdout...
1 parent f53cb6d commit 5fb716d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Jenkinsfiles/Jenkinsfile.cbc-run-multi-pr-checks-w-selenium-chromium

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)