forked from bids-standard/bids-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_tests.sh
executable file
·44 lines (34 loc) · 1.01 KB
/
run_tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
failed=
which bids-validator
if bids-validator --help | grep -q Description; then
VARIANT="schema"
else
VARIANT="legacy"
fi
for i in $(ls -d */ | grep -v node_modules); do
echo -n "Validating dataset $i: "
if [ -f ${i%%/}/.SKIP_VALIDATION ]; then
echo "skipping validation"
continue
fi
# Set the VALIDATOR_ARGS environment variable to pass additional arguments to the
# validator.
CMD="bids-validator ${i%%/} $VALIDATOR_ARGS"
# Use default configuration unless overridden
if [[ ! ( -f ${i%%/}/.bids-validator-config.json || $CMD =~ /--config/ ) ]]; then
CMD="$CMD --config $PWD/${VARIANT}config.json"
fi
# Ignore NIfTI headers except for synthetic dataset
if [ $i != "synthetic/" ]; then
CMD="$CMD --ignoreNiftiHeaders"
else
echo "validating NIfTI headers. "
fi
echo "Running " $CMD
$CMD || failed+=" $i"
done
if [ -n "$failed" ]; then
echo "Datasets failed validation: $failed"
exit 1
fi