Added function plumed_custom_skip
Can be used to skip a regtest based on some complex test.
E.g., to skip a test on mac add this to the config file:
function plumed_custom_skip(){
if [ "$(uname)" == "Darwin" ] ; then
return 0
fi
}
Loading
Please sign in to comment