We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98c15d commit 0cdb3d1Copy full SHA for 0cdb3d1
Lib/test/test_py_compile.py
@@ -174,6 +174,7 @@ def test_optimization_path(self):
174
# Specifying optimized bytecode should lead to a path reflecting that.
175
self.assertIn('opt-2', py_compile.compile(self.source_path, optimize=2))
176
177
+ @unittest.skip("TODO: RUSTPYTHON")
178
def test_invalidation_mode(self):
179
py_compile.compile(
180
self.source_path,
@@ -193,6 +194,7 @@ def test_invalidation_mode(self):
193
194
self.assertEqual(flags, 0b1)
195
196
197
+@unittest.skip("TODO: RUSTPYTHON")
198
class PyCompileTestsWithSourceEpoch(PyCompileTestsBase,
199
unittest.TestCase,
200
metaclass=SourceDateEpochTestMeta,
0 commit comments