|
59 | 59 | SYSTEM_TEST_DEPENDENCIES: List[str] = []
|
60 | 60 | SYSTEM_TEST_EXTRAS: List[str] = [
|
61 | 61 | "tracing",
|
| 62 | + "testing", |
62 | 63 | ]
|
63 | 64 | SYSTEM_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
|
64 | 65 |
|
@@ -165,7 +166,7 @@ def install_unittest_dependencies(session, *constraints):
|
165 | 166 | constraints_path = str(
|
166 | 167 | CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
|
167 | 168 | )
|
168 |
| - session.install("-e", ".[tracing]", "-c", constraints_path) |
| 169 | + session.install("-e", ".[tracing, testing]", "-c", constraints_path) |
169 | 170 | # XXX: Dump installed versions to debug OT issue
|
170 | 171 | session.run("pip", "list")
|
171 | 172 |
|
@@ -336,7 +337,7 @@ def cover(session):
|
336 | 337 | def docs(session):
|
337 | 338 | """Build the docs for this library."""
|
338 | 339 |
|
339 |
| - session.install("-e", ".[tracing]") |
| 340 | + session.install("-e", ".[tracing, testing]") |
340 | 341 | session.install(
|
341 | 342 | # We need to pin to specific versions of the `sphinxcontrib-*` packages
|
342 | 343 | # which still support sphinx 4.x.
|
@@ -371,7 +372,7 @@ def docs(session):
|
371 | 372 | def docfx(session):
|
372 | 373 | """Build the docfx yaml files for this library."""
|
373 | 374 |
|
374 |
| - session.install("-e", ".[tracing]") |
| 375 | + session.install("-e", ".[tracing, testing]") |
375 | 376 | session.install(
|
376 | 377 | # We need to pin to specific versions of the `sphinxcontrib-*` packages
|
377 | 378 | # which still support sphinx 4.x.
|
@@ -432,7 +433,7 @@ def prerelease_deps(session, protobuf_implementation, database_dialect):
|
432 | 433 | session.skip("cpp implementation is not supported in python 3.11+")
|
433 | 434 |
|
434 | 435 | # Install all dependencies
|
435 |
| - session.install("-e", ".[all, tests, tracing]") |
| 436 | + session.install("-e", ".[all, tests, tracing, testing]") |
436 | 437 | unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
|
437 | 438 | session.install(*unit_deps_all)
|
438 | 439 | system_deps_all = (
|
|
0 commit comments