Skip to content

Commit 17d0c60

Browse files
committed
test: flipped the HTTPS test flag
1 parent 8d7e680 commit 17d0c60

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
include:
3434
- TEST_NAME: "MariaDB 11.4, elasticsearch:7.9.1"
3535
ARGS: MYSQL_VER=mariadb:11.4.3 ES_VER=elasticsearch:7.9.1
36-
- TEST_NAME: "DIPS"
37-
ARGS: TEST_HTTPS=No
36+
- TEST_NAME: "HTTPS"
37+
ARGS: TEST_HTTPS=Yes
3838
- TEST_NAME: "Force DEncode"
3939
ARGS: DIRAC_USE_JSON_ENCODE=NO
4040
- TEST_NAME: "Backward Compatibility"

integration_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
FEATURE_VARIABLES = {
3030
"DIRACOSVER": "master",
3131
"DIRACOS_TARBALL_PATH": None,
32-
"TEST_HTTPS": "Yes",
32+
"TEST_HTTPS": "No",
3333
"TEST_DIRACX": "No",
3434
"DIRAC_FEWER_CFG_LOCKS": None,
3535
"DIRAC_USE_JSON_ENCODE": None,

tests/Jenkins/dirac-cfg-update-services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
fc = "FileCatalog"
5555
multiFC = "MultiVOFileCatalog"
5656

57-
if os.environ.get("TEST_HTTPS", "Yes") == "Yes":
57+
if os.environ.get("TEST_HTTPS", "No") == "Yes":
5858
fc = f"Tornado{fc}"
5959
multiFC = f"Tornado{multiFC}"
6060

tests/Jenkins/dirac_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fullInstallDIRAC() {
282282
#Now all the rest
283283

284284
# slave CS
285-
if [[ "${TEST_HTTPS:-Yes}" = "Yes" ]]; then
285+
if [[ "${TEST_HTTPS:-Yes}" = "No" ]]; then
286286
if ! dirac-install-component Configuration TornadoConfiguration "${DEBUG}"; then
287287
echo 'ERROR: dirac-install-component failed' >&2
288288
exit 1

0 commit comments

Comments
 (0)