Skip to content
Snippets Groups Projects
Commit 5c79e4e6 authored by Federico Felici's avatar Federico Felici
Browse files

Delete sldd only for algo and expcode tests

avoid concurrency issues when running unittests and other tests parallel
parent 7a99b56f
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,11 @@ classdef SCDalgo_test < SCDtest
testCase.assertWarningFree(@() evalin('base','clear'));
end
function clear_sldd(testCase)
SCD.clean_dd
testCase.assertTrue(true);
end
function setup_conf(testCase)
testCase.assertWarningFree(@() SCDconf_setConf('SIM'));
end
......
......@@ -19,6 +19,9 @@ classdef test_expcodes < SCDtest
testCase.addTeardown(@path,path);
testCase.addTeardown(@() SCDclass_expcode.close_all(0))
% Clean data dictionaries
SCD.clean_dd;
basePath = fullfile(fileparts(mfilename('fullpath')),'..');
run(fullfile(basePath,'rtccode_paths'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment