Skip to content

Commit cb5e1b6

Browse files
committed
Remove cruft from evg config, fix require_no_api_version
1 parent ee76451 commit cb5e1b6

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,13 +1186,6 @@ tasks:
11861186
vars:
11871187
DATA_LAKE: "true"
11881188

1189-
- name: versioned-api-tests
1190-
commands:
1191-
- func: "bootstrap data lake"
1192-
- func: "run tests"
1193-
vars:
1194-
DATA_LAKE: "true"
1195-
11961189
- name: test-ocsp-rsa-valid-cert-server-staples
11971190
tags: ["ocsp", "ocsp-rsa", "ocsp-staple"]
11981191
commands:

test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def require_transactions(self, func):
717717

718718
def require_no_api_version(self, func):
719719
"""Skip this test when testing with requireApiVersion."""
720-
return self._require(not MONGODB_API_VERSION,
720+
return self._require(lambda: not MONGODB_API_VERSION,
721721
"This test does not work with requireApiVersion",
722722
func=func)
723723

0 commit comments

Comments
 (0)