Skip to content

Commit 28ae64f

Browse files
authored
Merge pull request eth-cscs#190 from lucamar/fix-environ_check
Workaround for CrayVariablesCheckEiger with CPE 23.12
2 parents dea38f6 + 9109510 commit 28ae64f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

checks/prgenv/environ_check.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ def skip_modules(self):
9494
@rfm.simple_test
9595
class CrayVariablesCheckEiger(CrayVariablesCheck):
9696
cray_module = parameter([
97-
'cray-fftw', 'cray-hdf5', 'cray-hdf5-parallel', 'cray-libsci',
97+
'cray-fftw', 'cray-hdf5', 'cray-hdf5-parallel',
9898
'cray-mpich', 'cray-openshmemx', 'cray-parallel-netcdf', 'cray-pmi',
99-
'cray-python', 'cray-R', 'gcc', 'papi'
99+
'cray-python', 'cray-R', 'papi'
100100
])
101101
valid_systems = ['eiger:login', 'pilatus:login', 'hohgant:login']
102102

@@ -108,5 +108,5 @@ def load_cray_module(self):
108108
@run_after('init')
109109
def skip_modules(self):
110110
# FIXME: These modules should be fixed in later releases
111-
if self.cray_module in {'cray-fftw', 'cray-python'}:
111+
if self.cray_module in {'cray-fftw', 'cray-libsci', 'cray-python'}:
112112
self.valid_systems = []

0 commit comments

Comments
 (0)