File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -789,6 +789,7 @@ tasks:
789
789
- func : " run tests"
790
790
vars :
791
791
TEST_INDEX_MANAGEMENT : " 1"
792
+ AUTH : " auth"
792
793
793
794
- name : " mod-wsgi-standalone"
794
795
tags : ["mod_wsgi"]
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- set -eux
2
+ set -eu
3
3
4
- echo " Hello from just.sh"
5
- env
6
4
. .evergreen/scripts/setup-dev-env.sh
7
5
just " $@ "
Original file line number Diff line number Diff line change @@ -87,7 +87,11 @@ def is_set(var: str) -> bool:
87
87
88
88
89
89
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
91
95
92
96
93
97
def handle_test_env () -> None :
You can’t perform that action at this time.
0 commit comments