Skip to content

Commit 0427a05

Browse files
testing
1 parent f275f9b commit 0427a05

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
run: docker build . --tag snakemake/snakemake-image-kubeflow
1616
- name: Run tests
1717
run: |
18-
docker run --rm snakemake/snakemake-image-kubeflow bash -c 'snakemake --version'
19-
docker run --entrypoint bash --rm snakemake/snakemake-image-kubeflow snakemake --help
20-
docker run --rm snakemake/snakemake-image-kubeflow snakemake --list-plugins
21-
docker run --rm snakemake/snakemake-image-kubeflow snakemake --list-profiles
22-
docker run --rm snakemake/snakemake-image-kubeflow which setup-wizard
18+
for cmd in "snakemake --version" "which setup-wizard"
19+
do
20+
docker run --rm snakemake/snakemake-image-kubeflow bash -c "source /home/jovyan/.bashrc; $cmd"
21+
done

0 commit comments

Comments
 (0)