Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
include:
- TEST_NAME: "MariaDB 11.4, elasticsearch:7.9.1"
ARGS: MYSQL_VER=mariadb:11.4.3 ES_VER=elasticsearch:7.9.1
- TEST_NAME: "DIPS"
ARGS: TEST_HTTPS=No
- TEST_NAME: "HTTPS"
ARGS: TEST_HTTPS=Yes
- TEST_NAME: "Force DEncode"
ARGS: DIRAC_USE_JSON_ENCODE=NO
- TEST_NAME: "Backward Compatibility"
Expand Down
2 changes: 1 addition & 1 deletion integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
FEATURE_VARIABLES = {
"DIRACOSVER": "master",
"DIRACOS_TARBALL_PATH": None,
"TEST_HTTPS": "Yes",
"TEST_HTTPS": "No",
"TEST_DIRACX": "No",
"DIRAC_FEWER_CFG_LOCKS": None,
"DIRAC_USE_JSON_ENCODE": None,
Expand Down
2 changes: 1 addition & 1 deletion tests/Jenkins/dirac-cfg-update-services.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
fc = "FileCatalog"
multiFC = "MultiVOFileCatalog"

if os.environ.get("TEST_HTTPS", "Yes") == "Yes":
if os.environ.get("TEST_HTTPS", "No") == "Yes":
fc = f"Tornado{fc}"
multiFC = f"Tornado{multiFC}"

Expand Down
2 changes: 1 addition & 1 deletion tests/Jenkins/dirac_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ fullInstallDIRAC() {
#Now all the rest

# slave CS
if [[ "${TEST_HTTPS:-Yes}" = "Yes" ]]; then
if [[ "${TEST_HTTPS:-Yes}" = "No" ]]; then
if ! dirac-install-component Configuration TornadoConfiguration "${DEBUG}"; then
echo 'ERROR: dirac-install-component failed' >&2
exit 1
Expand Down
Loading