Skip to content

Commit

Permalink
Merge pull request #113 from savon-noir/fix/coverage
Browse files Browse the repository at this point in the history
readme update impacted sdist
  • Loading branch information
savon-noir committed Nov 27, 2020
2 parents 5f58939 + 24fcc2e commit bf22705
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# file GENERATED by distutils, do NOT edit
CHANGES.txt
README.rst
README.md
TODO
setup.py
docs/diff.rst
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include TODO
include *.rst *.txt
include *.rst *.txt README.md
recursive-include docs *.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from distutils.core import setup

with open("README.rst") as rfile:
with open("README.md") as rfile:
long_description = rfile.read()

setup(
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist = py27, py32, py38, flake8, pycodestyle, formatting, defusedxml, coveral
[testenv]
deps=pytest
pytest-cov
commands=pytest --cov=libnmap/ --ignore=libnmap/test/test_backend_plugin_factory.py --ignore=libnmap/test/test_defusedxml.py
commands=pytest --cov=libnmap/ --cov-report xml --ignore=libnmap/test/test_backend_plugin_factory.py --ignore=libnmap/test/test_defusedxml.py

[testenv:defusedxml]
deps=pytest
Expand Down Expand Up @@ -36,4 +36,4 @@ deps =
isort==5.5.2
commands =
black -l 79 --check . --exclude="tests/|venv|.tox"
isort . --check-only
isort . --check-only

0 comments on commit bf22705

Please sign in to comment.