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 7284293 commit e5435b2Copy full SHA for e5435b2
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)
+ os.makedirs(outputDir, exists_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