From 22cd86dfa1a2170645ac14bba404eb78b8246bee Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Mon, 22 Aug 2022 15:58:14 +0200 Subject: [PATCH] iwdr tests: skip .docker directory found on macos --- tests/wf/iwdr_permutations.cwl | 4 ++-- tests/wf/iwdr_permutations_nocontainer.cwl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/wf/iwdr_permutations.cwl b/tests/wf/iwdr_permutations.cwl index e4f6bba03d..97500635a6 100755 --- a/tests/wf/iwdr_permutations.cwl +++ b/tests/wf/iwdr_permutations.cwl @@ -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 diff --git a/tests/wf/iwdr_permutations_nocontainer.cwl b/tests/wf/iwdr_permutations_nocontainer.cwl index 0ef2e2646d..1a4580ee91 100755 --- a/tests/wf/iwdr_permutations_nocontainer.cwl +++ b/tests/wf/iwdr_permutations_nocontainer.cwl @@ -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