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 ef9c157 commit 245d382Copy full SHA for 245d382
test/core/run.py
@@ -112,7 +112,7 @@ def _runTestFile(self, inputPath):
112
113
if __name__ == "__main__":
114
if not os.path.exists(outputDir):
115
- os.makedirs(outputDir, exists_ok=True)
+ os.makedirs(outputDir, exist_ok=True)
116
for fileName in inputFiles:
117
testName = 'test ' + os.path.basename(fileName)
118
setattr(RunTests, testName, lambda self, file=fileName: self._runTestFile(file))
0 commit comments