39 lines
1.1 KiB
Matlab
39 lines
1.1 KiB
Matlab
function statusAll = runMatlab2TikzTests(varargin)
|
|
%% This file runs the complete MATLAB2TIKZ test suite.
|
|
% It is mainly used for testing on a continuous integration server, but it can
|
|
% also be used on a development machine.
|
|
|
|
CI_MODE = strcmpi(getenv('CONTINUOUS_INTEGRATION'),'true') || strcmp(getenv('CI'),'true');
|
|
isJenkins = ~isempty(getenv('JENKINS_URL'));
|
|
|
|
%% Set path
|
|
addpath(fullfile(pwd,'..','src'));
|
|
addpath(fullfile(pwd,'suites'));
|
|
|
|
%% Select functions to run
|
|
suite = @ACID;
|
|
allTests = 1:numel(suite(0));
|
|
|
|
%% Prepare environment
|
|
if strcmpi(getEnvironment(), 'Octave')
|
|
% Ensure that paging is disabled
|
|
% https://www.gnu.org/software/octave/doc/interpreter/Paging-Screen-Output.html
|
|
more off
|
|
end
|
|
|
|
%% Run tests
|
|
status = testHeadless('testFunctionIndices', allTests,...
|
|
'testsuite', suite, varargin{:});
|
|
|
|
if isJenkins
|
|
makeTapReport(status, 'stream', 'results.test.tap');
|
|
makeTravisReport(status, 'stream', 'results.test.md');
|
|
end
|
|
|
|
nErrors = makeTravisReport(status);
|
|
|
|
%% Calculate exit code
|
|
if CI_MODE
|
|
exit(nErrors);
|
|
end
|