Lines Matching +full:test +full:- +full:cython
12 supports standard YAML tags and provides Python-specific tags that
24 "Development Status :: 5 - Production/Stable",
28 "Programming Language :: Cython",
45 'Mailing lists': 'http://lists.sourceforge.net/lists/listinfo/yaml-core',
80 # we need cython here
83 from Cython.Distutils.extension import Extension as _Extension
84 from Cython.Distutils import build_ext as _build_ext
102 "Cython directive 'language_level' not set"
115 for idx in range(len(self.ext_modules)-1, -1, -1):
169 self.attr_name = 'with_' + feature_name.replace('-', '_')
170 self.option_name = 'with-' + feature_name
171 self.neg_option_name = 'without-' + feature_name
241 class test(Command): class
255 # running the tests this way can pollute the post-MANIFEST build sources
256 # (see https://github.com/yaml/pyyaml/issues/527#issuecomment-921058344)
257 …# until we remove the test command, run tests from an ephemeral copy of the intermediate build sou…
272 # this can fail under Windows; best-effort cleanup
280 'test': test,