From 268fc64eb40cfeb480c14926671cb3887e4e5c71 Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sun, 7 Feb 2021 15:43:41 -0500 Subject: [PATCH] Unskip test_relative_path --- Lib/test/test_py_compile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 8dc52c29f..29d108871 100644 --- a/Lib/test/test_py_compile.py +++ b/Lib/test/test_py_compile.py @@ -107,7 +107,6 @@ class PyCompileTestsBase: self.assertTrue(os.path.exists(self.pyc_path)) self.assertFalse(os.path.exists(self.cache_path)) - @unittest.skip("TODO: RUSTPYTHON") def test_relative_path(self): py_compile.compile(os.path.relpath(self.source_path), os.path.relpath(self.pyc_path))