summaryrefslogtreecommitdiff
path: root/buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@mongodb.com>2021-05-19 14:40:02 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-05-27 14:49:58 +0000
commit846a99de9a02454c5649cfaa4e69c785ddbfca62 (patch)
tree8a1e905b66363b2cf8740e546f2d9bb38cec38be /buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py
parent1923c38e7d2ecd839c637789dfbda5b3a64da226 (diff)
downloadmongo-846a99de9a02454c5649cfaa4e69c785ddbfca62.tar.gz
SERVER-54622 Retrieve back-branch fixture files to assemble multiversion
remove task_path_suffix from evergreen_gen_multiversion_tasks.py replication works fix fixture API adherence test generate mongos port on startup fix sharding and reformat
Diffstat (limited to 'buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py')
-rw-r--r--buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py b/buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py
index 0ea3ca2acb3..7f0e1110a32 100644
--- a/buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py
+++ b/buildscripts/tests/resmokelib/testing/fixtures/test_api_adherence.py
@@ -14,7 +14,9 @@ ALLOWED_IMPORTS = [
"buildscripts.resmokelib.utils.registry",
]
FIXTURE_PATH = os.path.normpath("buildscripts/resmokelib/testing/fixtures")
-IGNORED_FILES = ["__init__.py", "fixturelib.py"]
+
+# These files are not part of the fixure API.
+IGNORED_FILES = ["__init__.py", "fixturelib.py", "_builder.py"]
class AdherenceChecker(ast.NodeVisitor):