Skip to content

Commit a167b16

Browse files
committedSep 15, 2017
Tests and package configurations.
1 parent cb93072 commit a167b16

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed
 

‎.coveragerc

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
2-
1+
[run]
2+
branch = True
33

44
[report]
55
show_missing = true
66
exclude_lines =
77
def __repr__
88
def __str__
99
raise AssertionError
10-
raise NotImplementedError
10+
raise NotImplementedError
11+
if __name__ == .__main__.:

‎LICENSE

-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2121
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2222
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2323
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24-

‎manifest.in

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include requirements*.txt
2+
include setup.py
3+
recursive-exclude * *.pyc *.pyo
4+
global-exclude .git*
5+
exclude .travis.yml
6+
include tox.ini
7+
include README.md

‎pytest.ini

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[pytest]
2+
testpaths = tests
3+
norecursedirs = .tox build dist *.egg-info

0 commit comments

Comments
 (0)
Please sign in to comment.