Skip to content

Commit

Permalink
Merge pull request DIRACGrid#7920 from fstagni/90_tornado_flip
Browse files Browse the repository at this point in the history
[9.0] flipped the HTTPS test flag
  • Loading branch information
chrisburr authored Dec 13, 2024
2 parents d4c3de2 + 17d0c60 commit 8a6cf6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit 8a6cf6b

Please sign in to comment.