Skip to content

Commit

Permalink
iwdr tests: skip .docker directory found on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Aug 22, 2022
1 parent f741fde commit 22cd86d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/wf/iwdr_permutations.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ stdout: log.txt
baseCommand: [bash, -c]
arguments:
- |
find . | sort
find . | grep -v '\.docker' | sort
find /my_path | sort
find /my_other_path | sort
echo "a" > first_writable_file
echo "b" > /my_path/third_writable_file
touch fifth_writable_directory/c
touch /my_path/seventh_writable_directory/d
find . | sort
find . | grep -v '\.docker' | sort
find /my_path | sort
find /my_other_path | sort
2 changes: 1 addition & 1 deletion tests/wf/iwdr_permutations_nocontainer.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ outputs:
baseCommand: [bash, -c]
arguments:
- |
find .
find . | grep -v '\.docker' | sort
echo "a" > first_writable_file
touch fifth_writable_directory/c

0 comments on commit 22cd86d

Please sign in to comment.