Skip to content

Commit 143d3cf

Browse files
committed
update doc and fix linting
1 parent 29cf15d commit 143d3cf

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

src/convertSourceToRaw.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ function convertSourceToRaw(cfg)
2424

2525
% add dummy README and CHANGE file
2626
templateFolder = fullfile(fileparts(mfilename('fullpath')), '..', 'templates');
27-
27+
2828
copyfile(fullfile(templateFolder, 'README'), ...
29-
sourceDir);
29+
sourceDir);
3030
copyfile(fullfile(templateFolder, 'CHANGES'), ...
31-
sourceDir);
31+
sourceDir);
3232
copyfile(fullfile(templateFolder, '.bidsignore'), ...
33-
sourceDir);
33+
sourceDir);
3434

3535
copyfile(sourceDir, rawDir);
3636

src/templates/test_templateTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function test_templateTestBasic()
2525
% assertEqual(actualOupout, expectedOuput)
2626
% assertTrue( );
2727
% assertFalse( );
28-
28+
2929
%% clean up (delete temporary files that were created)
3030

3131
end

tests/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ You can use the function template to write more tests.
2424

2525
It is in the [`src/templates` folder](../src/templates)
2626

27+
## Manual tests
28+
29+
This is the folder where we keep tests that can not be run in continuous
30+
integration even as simple "smoke tests".
31+
2732
<!-- ## code coverage
2833
2934
A lot of what follows does not really work locally because of needing to add the right

tests/manualTests/test_makeRawDataset.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function test_makeRawDataset()
214214

215215
%% add dummy data
216216
templateFolder = fullfile(fileparts(mfilename('fullpath')), '..', '..', 'templates');
217-
217+
218218
subjectDir = fullfile(cfg.dir.output, 'source', 'sub-001', 'ses-001');
219219
funcDir = fullfile(subjectDir, 'func');
220220

0 commit comments

Comments
 (0)