commander icon indicating copy to clipboard operation
commander copied to clipboard

Add os for tests

Open SimonBaeumer opened this issue 5 years ago • 0 comments

Add a field which defines on which os a test can be executed, i.e.:

tests:
    echo hello:
        os:
        - darwin
        - linux

or maybe this is even better:

config:
    os: linux # Define default os
tests:
     print hello:
         cmd:
             osx: echo hello osx
             windows: echo hello windows
             linux: echo hello linux

SimonBaeumer avatar Mar 17 '19 20:03 SimonBaeumer