Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Permit test_slurm_commands to pass on MacOS
Test was failing on MacOS because by default it uses BSD grep, that does not accept `-P` option. With this change, after installing GNU grep the test will pass. GNU grep can be easily installed from Homebrew: `brew install grep`. ``` $ grep --version grep (BSD grep, GNU compatible) 2.6.0-FreeBSD $ brew install grep $ ggrep --version ggrep (GNU grep) 3.11 ... ``` Signed-off-by: Enrico Usai <[email protected]>
- Loading branch information