Skip to content

Commit

Permalink
move 0.9.1-dev to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanKepner committed Apr 2, 2019
1 parent 8ad0aad commit 6171599
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -262,23 +262,24 @@ the help output and in the mutants section below). You can use these category co
:code:`--whitelist` and :code:`--blacklist` arguments to opt-in or opt-out of types of mutations
for your trials. This impacts the pool of potential locations to draw from for the sample, but the
number of mutations specified in :code:`--nlocations` still determines the final sample size.
You will see the categories used in the output during the trial.
You will see the categories used in the output during the trial. Categories are space delimited
as an input list on the CLI.

.. code-block::
# selects only the categories "aa" (AugAssign), "bn" (BinOp), and "ix" (Index) mutations
$ mutatest --whitelist aa bn ix
... initial output ...
... prior output...
Full sample space size: 246
Restricting sample based on existing coverage file.
Coverage optimized sample space size: 215
Optimized sample set, size: 215
Category restriction, valid categories: ['aa', 'bn', 'ix']
Category restricted sample size: 21
... Full sample space size: 246
... Restricting sample based on existing coverage file.
... Coverage optimized sample space size: 215
... Optimized sample set, size: 215
... Category restriction, valid categories: ['aa', 'bn', 'ix']
... Category restricted sample size: 21
... continued output ...
... continued output...
# using shorthand
$ mutatest -w aa bn ix
Expand Down
2 changes: 1 addition & 1 deletion mutatest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Mutation initialization.
"""
__version__ = "0.9.1-dev"
__version__ = "0.9.1"

__title__ = "mutatest"
__description__ = "Python mutation testing: test your tests!"
Expand Down

0 comments on commit 6171599

Please sign in to comment.