Vasileios Karakasis
Vasileios Karakasis
If many session extras are stored with `--session-extras` then the default output can be too wide.
Currently, we don't check the schema of the results when loading from the database, but we do check it when trying to restore a session. We should generally disable loading...
This is a follow up from #3402. Copying here the detailed explanation: > not all configuration options have an effect at partition level, since many of them affect global aspects,...
That allows to perform tasks even if the test has failed and before exiting. It is related to #2671.
It would be extremely useful to allow users having full control over the generated executable through Jinja2 templating. Here is an example: ```python class MyTest(...): var = variable(int, value=3) executable_script...
This PR removes support for all Python versions lower than 3.9 and it also removes support of the legacy environment modules. The following changes are introduced in detail 1. Remove...
This is a limitation of the current implementation, which is though documented correctly: > If set to None, the [time_limit](https://reframe-hpc.readthedocs.io/en/stable/regression_test_api.html#reframe.core.systems.SystemPartition.time_limit) of the current system partition will be used. The problem...
For example [here](https://github.com/reframe-hpc/reframe/pull/3527) the diff coverage is 100% but, maybe due to a change in the total number of lines, the project coverage dropped by 0.01% causing the action to...
This PR offers the following features: 1. Multiple statistics can be presented at once using the special `stats` aggregator. These includes mean, standard deviation, and 0.01, 0.05, 0.50, 0.95, 0.99...