Skip to content

Commit

Permalink
Merge pull request #434 from yarikoptic/bfs
Browse files Browse the repository at this point in the history
Fixup and enhance invocation of run_tests.sh
  • Loading branch information
rwblair authored Apr 19, 2024
2 parents 711be5b + f755820 commit f60cd97
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate_datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@ jobs:
- name: Validate all BIDS datasets using bids-validator
run: |
cat ./run_tests.sh
bash ./run_tests.sh
./run_tests.sh
shell: bash
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ script that is provided in this repository. This script makes use of the
handles some special case examples (see
[Validator Exceptions](#validator-exceptions)).

Simply run `bash run_tests.sh` in a command line from the root of the
Simply run `./run_tests.sh` in a command line from the root of the
`bids-examples` repository.

### Validator exceptions
Expand Down Expand Up @@ -304,4 +304,4 @@ DO NOT EDIT DIRECTLY.
|:------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------|:--------------------------------|:-------------------------------------------------------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------|
| [ds000117](https://github.com/bids-standard/bids-examples/tree/master/ds000117) | A multi-subject, multi-modal human neuroimaging dataset of 19 subjects on a MEG visual task | anat, beh, dwi, fmap, func, meg | T1w, beh, bold, channels, coordsystem, dwi, events, headshape, magnitude1, magnitude2, meg, phasediff, scans | [link](https://openneuro.org/datasets/ds000117/) | [@RikHenson](https://github.com/RikHenson) |
| [eeg_ds003645s_hed_demo](https://github.com/bids-standard/bids-examples/tree/master/eeg_ds003645s_hed_demo) | Shows usage of Hierarchical Event Descriptor (HED) in .tsv files | eeg, beh | channels, eeg, events, participants, scans | [link](https://openneuro.org/datasets/ds003645) | [@VisLab](https://github.com/VisLab) |
| [synthetic](https://github.com/bids-standard/bids-examples/tree/master/synthetic) | A synthetic dataset | anat, beh, func | T1w, beh, bold, events, physio, scans, sessions, stim | n/a | [@effigies](https://github.com/effigies) |
| [synthetic](https://github.com/bids-standard/bids-examples/tree/master/synthetic) | A synthetic dataset | anat, beh, func | T1w, beh, bold, events, physio, scans, sessions, stim | n/a | [@effigies](https://github.com/effigies) |
4 changes: 2 additions & 2 deletions run_tests.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash

rc = 0;
rc=0;
for i in $(ls -d */ | grep -v node_modules); do
echo "Validating dataset" $i

Expand Down

0 comments on commit f60cd97

Please sign in to comment.