We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ad42d commit 68c9d29Copy full SHA for 68c9d29
.evergreen/scripts/run-tests.sh
@@ -1,5 +1,6 @@
1
#!/bin/bash
2
3
+# Disable xtrace
4
set +x
5
if [ -n "${MONGODB_STARTED}" ]; then
6
export PYMONGO_MUST_CONNECT=true
@@ -40,7 +41,6 @@ fi
40
41
if [ -n "${SKIP_CSOT_TESTS}" ]; then
42
export SKIP_CSOT_TESTS=1
43
fi
-
44
GREEN_FRAMEWORK=${GREEN_FRAMEWORK} \
45
PYTHON_BINARY=${PYTHON_BINARY} \
46
NO_EXT=${NO_EXT} \
.evergreen/scripts/run-with-env.sh
@@ -1,4 +1,4 @@
-#!/bin/bash -eu
+#!/bin/bash -u
# Example use: bash run-with-env.sh run-tests.sh {args...}
@@ -15,7 +15,7 @@ else
15
16
17
18
-set -eu
+set -u
19
20
# shellcheck source=/dev/null
21
. "$1" "${@:2}"
0 commit comments