Skip to content

Commit 5c0ee69

Browse files
authored
Merge branch 'master' into fix/int32-overflow-opmsg
2 parents 2f301ea + db4db92 commit 5c0ee69

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4098
-1407
lines changed

.evergreen/scripts/resync-all-specs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
from argparse import Namespace
88
from subprocess import CalledProcessError
99

10+
JIRA_FILTER = "https://jira.mongodb.org/issues/?jql=labels%20%3D%20automated-sync%20AND%20status%20!%3D%20Closed"
11+
1012

1113
def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
1214
"""Actually sync the specs"""
@@ -117,6 +119,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: str | None)
117119
pr_body += "\n -".join(new)
118120
pr_body += "\n"
119121
if pr_body != "":
122+
pr_body = f"Jira tickets: {JIRA_FILTER}\n\n" + pr_body
120123
if filename is None:
121124
print(f"\n{pr_body}")
122125
else:

.evergreen/scripts/setup_tests.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ def handle_test_env() -> None:
153153
# Start compiling the args we'll pass to uv.
154154
UV_ARGS = ["--extra test --no-group dev"]
155155

156+
# If USE_ACTIVE_VENV is set, add --active to UV_ARGS so run-tests.sh uses the active venv.
157+
if is_set("USE_ACTIVE_VENV"):
158+
UV_ARGS.append("--active")
159+
156160
test_title = test_name
157161
if sub_test_name:
158162
test_title += f" {sub_test_name}"

0 commit comments

Comments
 (0)