diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 804e021a..e36d265e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -162,7 +162,7 @@ jobs: flags: ${{ matrix.os }}_matlab-${{ matrix.matlab }}_${{ matrix.mode }} name: codecov-matlab fail_ci_if_error: false - # token: ${{ secrets.CODECOV_TOKEN }} # not required but might help API rate limits + token: ${{ secrets.CODECOV_TOKEN }} - name: Run system tests MATLAB ${{ matrix.script }} if: matrix.test_type == 'system' diff --git a/.github/workflows/tests_octave.yml b/.github/workflows/tests_octave.yml index 0de29b25..db53598b 100644 --- a/.github/workflows/tests_octave.yml +++ b/.github/workflows/tests_octave.yml @@ -155,7 +155,7 @@ jobs: flags: octave name: codecov-octave_${{ matrix.mode }} fail_ci_if_error: false - # token: ${{ secrets.CODECOV_TOKEN }} # not required but might help API rate limits + # token: ${{ secrets.CODECOV_TOKEN }} - name: Run system tests octave ${{ matrix.script }} if: matrix.test_type == 'system' diff --git a/.github/workflows/tests_windows.yml b/.github/workflows/tests_windows.yml index f14f2ebc..10a57409 100644 --- a/.github/workflows/tests_windows.yml +++ b/.github/workflows/tests_windows.yml @@ -131,7 +131,7 @@ jobs: flags: ${{ matrix.os }}_matlab-${{ matrix.matlab }}_${{ matrix.mode }} name: codecov-matlab fail_ci_if_error: false - # token: ${{ secrets.CODECOV_TOKEN }} # not required but might help API rate limits + # token: ${{ secrets.CODECOV_TOKEN }} - name: Run system tests MATLAB ${{ matrix.script }} if: matrix.test_type == 'system' diff --git a/demos/openneuro/ds000114_preproc_run.m b/demos/openneuro/ds000114_preproc_run.m index 7e6be75c..e9d29906 100644 --- a/demos/openneuro/ds000114_preproc_run.m +++ b/demos/openneuro/ds000114_preproc_run.m @@ -10,7 +10,7 @@ participant_label = {'04', '05'}; TASK = 'linebisection'; -session_to_select = {'test', 'retest'}; +session_to_select = {'test'}; root_dir = fileparts(mfilename('fullpath')); bids_dir = fullfile(root_dir, 'inputs', 'ds000114'); @@ -19,11 +19,11 @@ %% Copy % To make sure we still have copied all the data -% bidspm(bids_dir, output_dir, 'subject', ... -% 'participant_label', participant_label, ... -% 'action', 'copy', ... -% 'skip_validation', true, ... -% 'verbosity', 3); +bidspm(bids_dir, output_dir, 'subject', ... + 'participant_label', participant_label, ... + 'action', 'copy', ... + 'skip_validation', true, ... + 'verbosity', 3); %% Set filter and preprocess bids_filter_file = struct('bold', struct('modality', 'func', ...