We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6591188 commit f0cce26Copy full SHA for f0cce26
1 file changed
pytools/idfx_test.py
@@ -6,6 +6,7 @@
6
import re
7
import json
8
import pytest
9
+import warnings
10
11
import numpy as np
12
import matplotlib.pyplot as plt
@@ -308,12 +309,6 @@ def clean(self):
308
309
if os.path.exists(self.buildDir):
310
shutil.rmtree(self.buildDir)
311
- # remove previous build configuration cache in the test itself
312
- # otherwise cmake takes it in the build subdir
313
- testDirCMakeCache = os.path.join(self.testDir, "CMakeCache.txt")
314
- if os.path.exists(testDirCMakeCache):
315
- os.unlink(testDirCMakeCache)
316
-
317
# recreate
318
os.makedirs(self.buildDir, exist_ok=False)
319
0 commit comments