Skip to content

Commit dca6fdb

Browse files
committed
fix command
1 parent cd8c6a7 commit dca6fdb

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

.evergreen/scripts/setup_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ def handle_test_env() -> None:
176176
AUTH = "noauth"
177177

178178
if test_name == "data_lake":
179-
run_command(f"{DRIVERS_TOOLS}/.evergreen/stop-orchestration.sh")
180-
run_command(f"{DRIVERS_TOOLS}/.evergreen/atlas_data_lake/setup.sh")
179+
run_command(f"bash {DRIVERS_TOOLS}/.evergreen/stop-orchestration.sh")
180+
run_command(f"bash {DRIVERS_TOOLS}/.evergreen/atlas_data_lake/setup.sh")
181181
AUTH = "auth"
182182

183183
if AUTH != "noauth":

CONTRIBUTING.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -286,16 +286,23 @@ Note: these tests can only be run from an Evergreen Linux host that has the Pyth
286286
The `mode` can be `standalone` or `embedded`. For the `replica_set` version of the tests, use
287287
`TOPOLOGY=replica_set just run-server`.
288288

289+
### Atlas Data Lake tests.
290+
291+
You must have `docker` or `podman` installed locally.
292+
293+
- Run `just setup-tests data_lake`.
294+
- Run `just run-tests`.
295+
289296
### OCSP tests
290297

291-
- Export the orchestration file, e.g. `export ORCHESTRATION_FILE=rsa-basic-tls-ocsp-disableStapling.json`.
292-
This corresponds to a config file in `$DRIVERS_TOOLS/.evergreen/orchestration/configs/servers`.
293-
MongoDB servers on MacOS and Windows do not staple OCSP responses and only support RSA.
294-
- Run `just run-server ocsp`.
295-
- Run `just setup-tests ocsp <sub test>` (options are "valid", "revoked", "valid-delegate", "revoked-delegate").
296-
- Run `just run-tests`
298+
- Export the orchestration file, e.g. `export ORCHESTRATION_FILE=rsa-basic-tls-ocsp-disableStapling.json`.
299+
This corresponds to a config file in `$DRIVERS_TOOLS/.evergreen/orchestration/configs/servers`.
300+
MongoDB servers on MacOS and Windows do not staple OCSP responses and only support RSA.
301+
- Run `just run-server ocsp`.
302+
- Run `just setup-tests ocsp <sub test>` (options are "valid", "revoked", "valid-delegate", "revoked-delegate").
303+
- Run `just run-tests`
297304

298-
If you are running one of the `no-responder` tests, omit the `run-server` step.
305+
If you are running one of the `no-responder` tests, omit the `run-server` step.
299306

300307
### Perf Tests
301308

0 commit comments

Comments
 (0)