mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
bpo-39041: Add GitHub Actions support (GH-17594)
This commit is contained in:
parent
814d687c7d
commit
a76ba362c4
6 changed files with 239 additions and 4 deletions
|
@ -51,7 +51,7 @@ class SourceDateEpochTestMeta(type(unittest.TestCase)):
|
|||
class PyCompileTestsBase:
|
||||
|
||||
def setUp(self):
|
||||
self.directory = tempfile.mkdtemp()
|
||||
self.directory = tempfile.mkdtemp(dir=os.getcwd())
|
||||
self.source_path = os.path.join(self.directory, '_test.py')
|
||||
self.pyc_path = self.source_path + 'c'
|
||||
self.cache_path = importlib.util.cache_from_source(self.source_path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue