Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EvanKepner/mutatest
Python mutation testing: test your tests! Safely run mutation trials without source code modifications and see what will get past your test suite.
https://github.com/EvanKepner/mutatest
mutation mutation-testing python3 python37 python38 unit-test
Last synced: 25 days ago
JSON representation
Python mutation testing: test your tests! Safely run mutation trials without source code modifications and see what will get past your test suite.
- Host: GitHub
- URL: https://github.com/EvanKepner/mutatest
- Owner: EvanKepner
- License: mit
- Created: 2018-12-22T15:04:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-17T12:23:43.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T12:48:21.895Z (about 2 months ago)
- Topics: mutation, mutation-testing, python3, python37, python38, unit-test
- Language: Python
- Homepage: https://mutatest.readthedocs.io/
- Size: 776 KB
- Stars: 92
- Watchers: 3
- Forks: 16
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
- awesome-python-testing - Mutatest - Python mutation testing. (Mutation Testing)
README
``mutatest``: Python mutation testing
==========================================| |py-versions| |license| |ci-azure| |docs| |coverage| |black|
| |pypi-version| |pypi-status| |pypi-format| |pypi-downloads|
| |conda-version| |conda-recipe| |conda-platform| |conda-downloads|Are you confident in your tests? Try out ``mutatest`` and see if your tests will detect small
modifications (mutations) in the code. Surviving mutations represent subtle changes that are
undetectable by your tests. These mutants are potential modifications in source code that continuous
integration checks would miss.Features
---------- Simple command line tool with `multiple configuration options `_.
- Built on Python's Abstract Syntax Tree (AST) grammar to ensure `mutants are valid `_.
- `No source code modification `_,
only the ``__pycache__`` is changed.
- Uses ``coverage`` to create `only meaningful mutants `_.
- Built for efficiency with `multiple running modes `_
and `random sampling of mutation targets `_.
- Capable of running `parallel mutation trials `_
with multiprocessing on Python 3.8.
- Flexible enough to run on a `whole package `_
or a `single file `_.
- Includes an `API for custom mutation controls `_.
- Tested on Linux, Windows, and MacOS with `Azure pipelines `_.
- Full strict static type annotations throughout the source code and the API.Install
-------Install from `PyPI `_:
.. code-block:: bash
$ pip install mutatest
Install from `conda-forge `_:
.. code-block:: bash
$ conda install -c conda-forge mutatest
Example Output
--------------This is an output example running mutation trials against the
`API Tutorial example folder `_
example folder... code-block:: bash
$ mutatest -s example/ -t "pytest" -r 314
Running clean trial
2 mutation targets found in example/a.py AST.
1 mutation targets found in example/b.py AST.
Setting random.seed to: 314
Total sample space size: 2
10 exceeds sample space, using full sample: 2.Starting individual mutation trials!
Current target location: a.py, LocIndex(ast_class='BinOp', lineno=6, col_offset=11, op_type=)
Detected mutation at example/a.py: (6, 11)
Detected mutation at example/a.py: (6, 11)
Surviving mutation at example/a.py: (6, 11)
Break on survival: stopping further mutations at location.Current target location: b.py, LocIndex(ast_class='CompareIs', lineno=6, col_offset=11, op_type=)
Detected mutation at example/b.py: (6, 11)
Running clean trialMutatest diagnostic summary
===========================
- Source location: /home/user/Github/mutatest/docs/api_tutorial/example
- Test commands: ['pytest']
- Mode: s
- Excluded files: []
- N locations input: 10
- Random seed: 314Random sample details
---------------------
- Total locations mutated: 2
- Total locations identified: 2
- Location sample coverage: 100.00 %Running time details
--------------------
- Clean trial 1 run time: 0:00:00.348999
- Clean trial 2 run time: 0:00:00.350213
- Mutation trials total run time: 0:00:01.389095Trial Summary Report:
Overall mutation trial summary
==============================
- DETECTED: 3
- SURVIVED: 1
- TOTAL RUNS: 4
- RUN DATETIME: 2019-10-17 16:57:08.645355Detected mutations:
DETECTED
--------
- example/a.py: (l: 6, c: 11) - mutation from to
- example/a.py: (l: 6, c: 11) - mutation from to
- example/b.py: (l: 6, c: 11) - mutation from toSurviving mutations:
SURVIVED
--------
- example/a.py: (l: 6, c: 11) - mutation from toDocumentation
-------------For full documentation, including installation, CLI references, API references, and tutorials,
please see https://mutatest.readthedocs.io/en/latest/.
The project is hosted on PyPI at https://pypi.org/project/mutatest/.Bugs/Requests
-------------Please use the `GitHub issue tracker `_ to submit bugs
or request features.
See the `Contributing Guidelines `_ if you
are interested in submitting code in the form of pull requests.ChangeLog
---------Consult the `Changelog `_ page for fixes
and enhancements of each version.License
-------Copyright Evan Kepner 2018-2020.
Distributed under the terms of the `MIT `_
license, ``mutatest`` is free and open source software... |py-versions| image:: https://img.shields.io/pypi/pyversions/mutatest?color=green
:target: https://pypi.org/project/mutatest/
:alt: Python versions
.. |license| image:: https://img.shields.io/pypi/l/mutatest.svg
:target: https://pypi.org/project/mutatest/
:alt: License
.. |pypi-version| image:: https://badge.fury.io/py/mutatest.svg
:target: https://pypi.org/project/mutatest/
:alt: PyPI version
.. |pypi-status| image:: https://img.shields.io/pypi/status/mutatest.svg
:target: https://pypi.org/project/mutatest/
:alt: PyPI status
.. |pypi-format| image:: https://img.shields.io/pypi/format/mutatest.svg
:target: https://pypi.org/project/mutatest/
:alt: PyPI Format
.. |pypi-downloads| image:: https://pepy.tech/badge/mutatest
:target: https://pepy.tech/project/mutatest
:alt: PyPI Downloads
.. |ci-travis| image:: https://travis-ci.org/EvanKepner/mutatest.svg?branch=master
:target: https://travis-ci.org/EvanKepner/mutatest
:alt: TravisCI
.. |ci-azure| image:: https://dev.azure.com/evankepner/mutatest/_apis/build/status/EvanKepner.mutatest?branchName=master
:target: https://dev.azure.com/evankepner/mutatest/_build/latest?definitionId=1&branchName=master
:alt: Azure Pipelines
.. |docs| image:: https://readthedocs.org/projects/mutatest/badge/?version=latest
:target: https://mutatest.readthedocs.io/en/latest/?badge=latest
:alt: RTD status
.. |coverage| image:: https://codecov.io/gh/EvanKepner/mutatest/branch/master/graph/badge.svg
:target: https://codecov.io/gh/EvanKepner/mutatest
:alt: CodeCov
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Black
.. |conda-recipe| image:: https://img.shields.io/badge/recipe-mutatest-green.svg
:target: https://anaconda.org/conda-forge/mutatest
:alt: Conda recipe
.. |conda-version| image:: https://img.shields.io/conda/vn/conda-forge/mutatest.svg
:target: https://anaconda.org/conda-forge/mutatest
:alt: Conda version
.. |conda-platform| image:: https://img.shields.io/conda/pn/conda-forge/mutatest.svg
:target: https://anaconda.org/conda-forge/mutatest
:alt: Conda platforms
.. |conda-azure| image:: https://dev.azure.com/conda-forge/feedstock-builds/_apis/build/status/mutatest-feedstock?branchName=master
:target: https://anaconda.org/conda-forge/mutatest
:alt: Conda azure status
.. |conda-downloads| image:: https://img.shields.io/conda/dn/conda-forge/mutatest.svg
:target: https://anaconda.org/conda-forge/mutatest
:alt: Conda downloads