Skip to content

Commit 9b9b99b

Browse files
committed
fix index management and debug
1 parent a5067b9 commit 9b9b99b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,7 @@ tasks:
789789
- func: "run tests"
790790
vars:
791791
TEST_INDEX_MANAGEMENT: "1"
792+
AUTH: "auth"
792793

793794
- name: "mod-wsgi-standalone"
794795
tags: ["mod_wsgi"]

.evergreen/just.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/bin/bash
2-
set -eux
2+
set -eu
33

4-
echo "Hello from just.sh"
5-
env
64
. .evergreen/scripts/setup-dev-env.sh
75
just "$@"

.evergreen/scripts/setup-tests.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ def is_set(var: str) -> bool:
8787

8888

8989
def run_command(cmd: str) -> None:
90-
subprocess.check_call(shlex.split(cmd)) # noqa: S603
90+
try:
91+
proc = subprocess.run(shlex.split(cmd), check=True) # noqa: S603
92+
except subprocess.CalledProcessError as e:
93+
LOGGER.error(proc.stderr.decode("utf-8"))
94+
raise e
9195

9296

9397
def handle_test_env() -> None:

0 commit comments

Comments
 (0)