Skip to content

Commit

Permalink
Fix circle test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
emi80 committed May 29, 2017
1 parent 93a18ee commit ea75521
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ci
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o pipefail
OUT_DIR=data

case "$1" in
test)
run)
echo "Running test pipeline..." >&2
nextflow run . -resume
;;
Expand All @@ -14,11 +14,11 @@ case "$1" in
md5sum -c ${OUT_DIR}/md5s.txt
;;
cleanup)
echo "Cleaning up test results..." >&2
echo "Cleaning up test results..." >&2
find ${OUT_DIR} -type l -exec rm {} \+
find ${OUT_DIR} -type d -empty -exec rmdir {} \+
;;
*)
echo "Usage: run {test|validate|cleanup}" >&2
echo "Usage: run {run|validate|cleanup}" >&2
exit 1
esac
3 changes: 1 addition & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ test:
- docker pull guigolab/ipsa-nf@sha256:88e680da318023d2a577893d5c4f0324ad720f83b13830b4e29f2d03f77490bb
- curl -fsSL get.nextflow.io | bash
override:
- ./ci run
- (set -x && ./ci validate)
- ./ci run && ./ci validate

0 comments on commit ea75521

Please sign in to comment.