Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ matrix:
env: TOXENV=py36
- python: "pypy"
env: TOXENV=pypy
- python: "2.7"
env: TOXENV=packaging


install:
Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include README.md LICENSE CHANGELOG.md tox.ini requirements-test.txt .coveragerc Makefile pytest.ini .tox-coveragerc
exclude TODO.md appveyor.yml

graft docs
prune docs/_build
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py34,py35,py36,pypy,coverage-report
envlist = py26,py27,py34,py35,py36,pypy,coverage-report,packaging

[testenv]
changedir = .tox
Expand All @@ -14,3 +14,13 @@ deps = coverage
commands = coverage combine --rcfile {toxinidir}/.tox-coveragerc
coverage report --rcfile {toxinidir}/.tox-coveragerc
coverage html --rcfile {toxinidir}/.tox-coveragerc -d {toxinidir}/htmlcov


[testenv:packaging]
changedir = {toxinidir}
deps =
check-manifest==0.35
readme_renderer==17.2
commands =
check-manifest
python setup.py check --metadata --restructuredtext --strict