@@ -64,7 +64,6 @@ def docs(session):
64
64
session .run (SPHINX_BUILD , * BUILD_PARAMETERS , SOURCE_DIR , OUTPUT_DIR , * session .posargs )
65
65
# When building the guide, also build the translations in RELEASE_LANGUAGES
66
66
session .notify ("build-release-languages" , session .posargs )
67
- session .notify ("build-translations" , [sphinx_env ])
68
67
69
68
70
69
@nox .session (name = "docs-test" )
@@ -80,7 +79,6 @@ def docs_test(session):
80
79
# When building the guide with additional parameters, also build the translations in RELEASE_LANGUAGES
81
80
# with those same parameters.
82
81
session .notify ("build-release-languages" , [* TEST_PARAMETERS , * session .posargs ])
83
- session .notify ("build-translations" , ['production' , * TEST_PARAMETERS ])
84
82
85
83
def _autobuild_cmd (posargs : list [str ], output_dir = OUTPUT_DIR ) -> list [str ]:
86
84
cmd = [SPHINX_AUTO_BUILD , * BUILD_PARAMETERS , str (SOURCE_DIR ), str (output_dir ), * posargs ]
@@ -321,7 +319,6 @@ def build_all_languages_test(session):
321
319
in the same way docs-test does for the English version.
322
320
"""
323
321
session .notify ("build-all-languages" , [* TEST_PARAMETERS ])
324
- session .notify ("build-translations" , [* TEST_PARAMETERS ])
325
322
326
323
327
324
def _sphinx_env (session ) -> str :
0 commit comments