@@ -148,24 +148,9 @@ repos = [
148148 " git@github.com:mongodb-forks/django.git" ,
149149 " git@github.com:mongodb-labs/django-mongodb-backend.git" ,
150150 " git@github.com:mongodb-labs/django-mongodb-extensions.git" ,
151- " git@github.com:mongodb/libmongocrypt.git" ,
152151 " git@github.com:aclark4life/medical-records.git" ,
153152]
154153
155- # Install directories: specify install directories for repos where the package is not at the root
156- [repo .groups .django .install_dirs ]
157- libmongocrypt = [
158- " bindings/python/" ,
159- ]
160-
161- # Build commands: specify commands to run before installing (e.g., cmake builds)
162- [repo .groups .django .build_commands ]
163- libmongocrypt = [
164- " mkdir -p cmake-build" ,
165- " cd cmake-build && cmake .." ,
166- " cd cmake-build && make" ,
167- ]
168-
169154# Custom test runner configuration: specify test runner script for repos that don't use pytest
170155[repo .groups .django .test_runner ]
171156django = " tests/runtests.py"
@@ -181,6 +166,25 @@ django = "mongodb-6.0.x"
181166# Environment variables for test runs
182167[repo .groups .django .test_env ]
183168
169+ [repo .groups .pymongocrypt ]
170+ repos = [
171+ " git@github.com:mongodb/libmongocrypt.git" ,
172+ ]
173+
174+ # Install directories: specify install directories for repos where the package is not at the root
175+ [repo .groups .pymongocrypt .install_dirs ]
176+ libmongocrypt = [
177+ " bindings/python/" ,
178+ ]
179+
180+ # Build commands: specify commands to run before installing (e.g., cmake builds)
181+ [repo .groups .pymongocrypt .build_commands ]
182+ libmongocrypt = [
183+ " mkdir -p cmake-build" ,
184+ " cd cmake-build && cmake .." ,
185+ " cd cmake-build && make" ,
186+ ]
187+
184188[evergreen .mongo-python-driver ]
185189project_name = " mongo-python-driver"
186190
0 commit comments