reframe-hpc / reframe

A powerful Python framework for writing and running portable regression tests and benchmarks for HPC systems.
https://reframe-hpc.readthedocs.org
BSD 3-Clause "New" or "Revised" License
213 stars 98 forks source link

Add cli option to ignore `valid_systems` and `valid_prog_environs` #3217

Closed teojgo closed 1 week ago

teojgo commented 2 weeks ago

As a user I would like to ignore the valid_systems and the valid_prog_environs and try a test no matter what the requirements might be.

This can be done now by setting the variables -S 'valid_systems=*' -S 'valid_prog_environs=*' but it would be nice to have an option for this.

vkarak commented 2 weeks ago

We do have the --skip-system-check and --skip-prgenv-check that do exactly that.

teojgo commented 1 week ago

Yes, indeed I overlooked those options. They do the job.