File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -272,8 +272,6 @@ module = [
272272 " tests.test_extensions.test_ext_napoleon" ,
273273 " tests.test_extensions.test_ext_todo" ,
274274 " tests.test_extensions.test_ext_viewcode" ,
275- # tests/test_intl
276- " tests.test_intl.test_catalogs" ,
277275 # tests/test_markup
278276 " tests.test_markup.test_markup" ,
279277 " tests.test_markup.test_parser" ,
Original file line number Diff line number Diff line change 99import pytest
1010
1111if TYPE_CHECKING :
12+ from collections .abc import Iterator
13+
14+ from sphinx .testing .fixtures import _app_params
1215 from sphinx .testing .util import SphinxTestApp
1316
1417
1518@pytest .fixture
16- def _setup_test (app_params ) :
19+ def _setup_test (app_params : _app_params ) -> Iterator [ None ] :
1720 assert isinstance (app_params .kwargs ['srcdir' ], Path )
1821 srcdir = app_params .kwargs ['srcdir' ]
1922 src_locale_dir = srcdir / 'xx' / 'LC_MESSAGES'
You can’t perform that action at this time.
0 commit comments