Results in MOcov/MOcov

#9

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. ...

#8

Error when using MOcov with test subject coded as a class

On Ubuntu Trusty (32 bits - i686-pc-linux-gnu) with GNU Octave 4.0.2, running tests for subjects that use the "new" class definition syntax results in the following error: failure: parse error ...

#7

BUG: _find_files.m Add missing argument

Needed because I was an idiot and didn't test my last PR properly. Sorry!

#6

Add ability to specify patterns to be excluded from coverage report

Closes #4. Adds -cover_exclude option, which can be to specify patterns for directories and files which should be excluded from the coverage report. This can be used multiple times to specify multiple ...

#5

Add option to modify files for coverage tracking in-place

This option would be useful if the location of the files is intrinsically important. With this option, files would be copied to a temporary directory, modified to include decorators on executable lines, ...

#4

Add option to exclude individual files

I would like to test the coverage over a (recursive) folder, but exclude individual files within the folder(s). This would be a useful feature generally if you have .m files which don't need to be ...

#3

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 ...

#2

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 coverage. Previously, files ...

#1

MAINT: Change denumerator->denominator

"Denominator" is the correct English name for the bottom part of a fraction.