- Nov 11, 2018
-
-
Dom Sekotill authored
-
- Dec 15, 2016
-
-
Dom Sekotill authored
`coverage` updates appear to have changed the reporting defaults. This commit changes the reporting code to explicitly request missing statements in the report.
-
Dom Sekotill authored
`unittest` appears to no longer be raising SystemExit on completion.
-
- Dec 08, 2016
-
-
Dom Sekotill authored
-
Dom Sekotill authored
-
- Aug 22, 2016
-
-
Dom Sekotill authored
-
Dom Sekotill authored
-
- Apr 20, 2016
-
-
Dom Sekotill authored
SystemExit re-raised to exit with the correct return code.
-
- Jan 14, 2016
-
-
Dom Sekotill authored
-
- Oct 14, 2015
-
-
Dom Sekotill authored
-
Dom Sekotill authored
-
Dom Sekotill authored
-
- May 28, 2015
-
-
Dom Sekotill authored
Added an assertion to check test_generator has be instantiated correctly, instead of the class itself being used as a decorator.
-
Dom Sekotill authored
Generate a single, unnumbered, zero-argument test method by creating a test_generator decorator with no arguments or the first argument as None.
-
- May 27, 2015
-
-
Dom Sekotill authored
To make coverage tests work, build to a build path and add it to sys.path, remove tested modules before tests so that the import-time code is included in coverage.
-
Dom Sekotill authored
If reporting coverage to stdout, don't close it once the report is complete.
-
Dom Sekotill authored
Added bytes & bytearray as iterable types that are not to be recognised as positional arguments when interpreting test_generator profiles.
-
- May 18, 2015
-
-
Dom Sekotill authored
The filename attribute is not present on all loader classes, the get_filename() method is the correct way of getting a module's file name.
-
Dom Sekotill authored
_is_args_kwds() was checking for two sets of positional arguments, changed to the correct behaviour of one positional, one keywords.
-
- May 11, 2015
-
-
Dom Sekotill authored
In generator.test_generator._is_args_kwds, the first subcondition ( len(obj) == 2 ) can match dicts with two items, in which case (unless the keys for the two items happen to be 0 and 1) the second two subconditions will raise KeyErrors. This is now treated in the same way as a TypeError.
-
- May 09, 2015
-
-
Dom Sekotill authored
Instead of storing the test_generator in-place of the function it wraps and later swapping the function back during metaclass processing, the generator is now stored as an attribute of the function.
-
Dom Sekotill authored
-
- May 08, 2015
-
-
Dom Sekotill authored
One of the arguments of unittest_extra.generator.test_generator.wrap() was confusingly named 'instance' even though it was a actually a class object.
-
Dom Sekotill authored
unittest_extra.generator.test_generator.wrap() has been changed to take an instance rather than a dictionary of attributes, allowing it to use inheritance features to get attributes from bases.
-
- May 07, 2015
-
-
Dom Sekotill authored
Due to Python 2's stupid implicit relative imports, changed the name so that it no longer conflicts with the top-level package 'coverage' which we need to import. (Circular imports - yay).
-
Dom Sekotill authored
In coverage.coverage, don't attempt to import packages who's filenames match patterns in 'exclude'.
-
Dom Sekotill authored
-
Dom Sekotill authored
-
Dom Sekotill authored
-
Dom Sekotill authored
-