Skip to content

Commit

Permalink
Merge branch 'master' into fix-setup-script
Browse files Browse the repository at this point in the history
  • Loading branch information
phihos committed Sep 26, 2018
2 parents 5638211 + 0523b83 commit cff1b7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ python:
- 3.5
- 3.6
install:
# python 3.3 compatibility
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install virtualenv==15.1.0 setuptools==39.2.0; fi
- pip install tox-travis
- pip install coveralls
script:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MutPy

MutPy is a mutation testing tool for Python 3.3+ source code. MutPy
supports standard unittest module, generates YAML/HTML reports and has
colorful output. It's apply mutation on AST level. You could boost your
colorful output. It applies mutation on AST level. You could boost your
mutation testing process with high order mutations (HOM) and code
coverage analysis.

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
url='https://github.com/mutpy/mutpy',
download_url='https://github.com/mutpy/mutpy',
packages=['mutpy', 'mutpy.operators'],
package_data={'mutpy': ['templates/*.html']},
scripts=['bin/mut.py'],
install_requires=requirements,
test_suite='mutpy.test',
Expand Down

0 comments on commit cff1b7e

Please sign in to comment.