Skip to content

Commit 22cd86d

Browse files
committed
iwdr tests: skip .docker directory found on macos
1 parent f741fde commit 22cd86d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/wf/iwdr_permutations.cwl

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ stdout: log.txt
7474
baseCommand: [bash, -c]
7575
arguments:
7676
- |
77-
find . | sort
77+
find . | grep -v '\.docker' | sort
7878
find /my_path | sort
7979
find /my_other_path | sort
8080
echo "a" > first_writable_file
8181
echo "b" > /my_path/third_writable_file
8282
touch fifth_writable_directory/c
8383
touch /my_path/seventh_writable_directory/d
84-
find . | sort
84+
find . | grep -v '\.docker' | sort
8585
find /my_path | sort
8686
find /my_other_path | sort

tests/wf/iwdr_permutations_nocontainer.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ outputs:
3838
baseCommand: [bash, -c]
3939
arguments:
4040
- |
41-
find .
41+
find . | grep -v '\.docker' | sort
4242
echo "a" > first_writable_file
4343
touch fifth_writable_directory/c

0 commit comments

Comments
 (0)