Skip to content

Commit b1a7f17

Browse files
committed
test: skip tests in v8
1 parent d7e9401 commit b1a7f17

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tests/Integration/all_integration_client_tests.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,10 @@ pytest --no-check-dirac-environment "${THIS_DIR}/ResourceStatusSystem/Test_Email
5656
echo -e "*** $(date -u) **** WMS TESTS ****\n"
5757

5858
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_SandboxStoreClient.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
59-
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_PilotsClient.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
60-
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_Client_WMS.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
59+
if [[ -z "${INSTALLATION_BRANCH}" ]]; then
60+
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_PilotsClient.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
61+
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_Client_WMS.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
62+
fi
6163

6264
# Make sure we have the prod role for these tests to get the VmRpcOperator permission
6365
dirac-proxy-init -g prod "${DEBUG}" |& tee -a clientTestOutputs.txt
@@ -70,7 +72,9 @@ python "${THIS_DIR}/WorkloadManagementSystem/createJobXMLDescriptions.py" |& tee
7072
#-------------------------------------------------------------------------------#
7173
echo -e "*** $(date -u) **** MONITORING TESTS ****\n"
7274
pytest --no-check-dirac-environment "${THIS_DIR}/Monitoring/Test_MonitoringSystem.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
73-
pytest --no-check-dirac-environment "${THIS_DIR}/WorkloadManagementSystem/Test_WebAppClient.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
75+
if [[ -z "${INSTALLATION_BRANCH}" ]]; then
76+
pytest --no-check-dirac-environment "${THIS_DIR}/Monitoring/Test_WebAppClient.py" |& tee -a clientTestOutputs.txt; (( ERR |= "${?}" ))
77+
fi
7478

7579
#-------------------------------------------------------------------------------#
7680
echo -e "*** $(date -u) **** TS TESTS ****\n"

0 commit comments

Comments
 (0)