-
TST: replace "fprintf(0,...)" statements by "abs(...)" statements, be…
…cause Matlab raises an error when trying to write to fid=0
-
TST: allow different order of covered lines
nno committedMay 8, 2017
-
Merge pull request #9 from abravalheri/classdef-support
ENH: Add minimal classdef support for MOcovMFile
-
ENH: Remove 'support' dir and tempfolder (#9)
For now helper functions for classdef syntax check do not need to be shared, so them can go back to the test file itself. Tempfolder usage can be avoided to make test simpler. Additionally make whitespace consistent in test file. OBS: The function name assertSringContains was written using camelCase to be consistent with MOxUnit assertion helpers.
-
-
-
ENH: Improve #9 by merging file tests
Anderson Bravalheri committed with (none)Dec 20, 2016 -
ENH: Improve #9 quality according to revision
Anderson Bravalheri committed with (none)Dec 20, 2016
-
ENH: Add minimal classdef support for MOcovMFile
Avoid prepending `mocov_line_covered` to: - `classdef`; - `properties` and `methods` section opening statements; - inside the entire `properties` section, since a limited subset of the M-file syntax is allowed.
-
-
nno committed
Jul 27, 2016 -
RF: always set exclude pattern
nno committedJul 27, 2016 -
ENH: support TRAVIS_PARALLEL environmental variable
nno committedJul 27, 2016
-
Merge pull request #7 from scottclowe/enh_exclude-files
BF: _find_files.m Add missing argument
-
-
-
Merge pull request #6 from scottclowe/enh_exclude-files
NF: Add ability to specify patterns to be excluded from coverage report
-
-
-
ENH: Add -cover_exclude option for excluding patterns
This adds an option to the API to specify patterns which should not be included in the coverage report. Closes #4.
-
ENH: mocov_find_files.m Add exclude patterns option
Will exclude matching directories and files from the list.
scottclowe committedFeb 22, 2016
-
Merge pull request #2 from scottclowe/fix-empty-coverage
BF: Fix coverage calculation for empty files
-
BUG: Fix coverage calculation for empty files
For files with no executable lines, the coverage report should have a nominal 100% coverage rate. This is the behaviour of other coverage packages, such as those for Python. Previously, files without any executable lines would report a coverage of "NaN%", due to the division by 0.
-
Merge pull request #3 from scottclowe/bld-shippable-test-once
BLD: Only run tests once on Shippable
-
Merge pull request #1 from scottclowe/maint-denominator
MAINT: Change denumerator->denominator
-
BLD: Only run tests once on Shippable
Since the environment variable TRAVIS is set to "true" on Shippable, the command for Travis-CI should only be run if the SHIPPABLE value is not "true". Otherwise tests are run twice on Shippable.
-
MAINT: Change denumerator->denominator
"Denominator" is the correct English name for the bottom part of a fraction.