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