Skip to content

Commit

Permalink
activate codecov tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Jul 31, 2024
1 parent 65c70c2 commit c52624a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_octave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
12 changes: 6 additions & 6 deletions demos/openneuro/ds000114_preproc_run.m
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -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', ...
Expand Down

0 comments on commit c52624a

Please sign in to comment.