diff --git a/README.rst b/README.rst index f7c3b6a..8b6c11f 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/mutatest/__init__.py b/mutatest/__init__.py index c90657b..ae03235 100644 --- a/mutatest/__init__.py +++ b/mutatest/__init__.py @@ -1,6 +1,6 @@ """Mutation initialization. """ -__version__ = "0.9.1-dev" +__version__ = "0.9.1" __title__ = "mutatest" __description__ = "Python mutation testing: test your tests!"