shell.executable("bash")

rule a:
    output:
        "test.out"
    conda:
        "test-env.yaml"
    shell:
        "touch {output}"
