Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exclude premix relvals from the MatrixReader (port 74x) #6722

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions Configuration/PyReleaseValidation/python/MatrixReader.py
Expand Up @@ -49,8 +49,8 @@ def reset(self, what='all'):
'relval_upgrade':'upg-',
'relval_identity':'id-',
'relval_machine': 'mach-',
'relval_unsch': 'unsch-',
'relval_premix': 'premix-'
'relval_unsch': 'unsch-'
#, 'relval_premix': 'premix-'
}

self.files = ['relval_standard' ,
Expand All @@ -63,8 +63,8 @@ def reset(self, what='all'):
'relval_upgrade',
'relval_identity',
'relval_machine',
'relval_unsch',
'relval_premix'
'relval_unsch'
#, 'relval_premix'
]

self.relvalModule = None
Expand Down