Skip to content

Commit 58ace8b

Browse files
committed
Tests filtered for each repo
1 parent b2927ef commit 58ace8b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

runAllTests.m

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@ function runAllTests(id, repo)
3434
% the sortByFixtures method to sort the suite.
3535
all_tests = [main_tests signals_tests alyx_tests];
3636
% If the repo under test is alyx, filter out irrelevent tests
37-
if startsWith(repo, 'alyx', 'IgnoreCase', true)
37+
if strcmp(repo, 'alyx')
3838
all_tests = all_tests(startsWith({all_tests.Name}, 'Alyx', 'IgnoreCase', true));
39+
elseif strcmp(repo, 'alyx-matlab')
40+
all_tests = alyx_tests;
41+
elseif strcmp(repo, 'signals')
42+
all_tests = signals_tests;
3943
end
4044

4145
runner = TestRunner.withTextOutput;

0 commit comments

Comments
 (0)