Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
get tests to at least start for tox.
Browse files Browse the repository at this point in the history
  • Loading branch information
janwijbrand committed Jan 16, 2018
1 parent 97ed92b commit 580f818
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
10 changes: 10 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,10 @@
include .travis.yml
include *.py
include *.txt
include buildout.cfg
include tox.ini
recursive-include src *.jpg
recursive-include src *.js
recursive-include src *.pt
recursive-include src *.txt
recursive-include src *.zcml
2 changes: 0 additions & 2 deletions setup.py
Expand Up @@ -7,8 +7,6 @@ def read(*rnames):


long_description = (
read('src', 'zope', 'fanstatic', 'README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Download\n'
Expand Down
16 changes: 16 additions & 0 deletions tox.ini
@@ -0,0 +1,16 @@
[tox]
envlist =
py27,
py34,
py35,
py36,
pypy,
pypy3

[testenv]
commands =
coverage run -m zope.testrunner --test-path=src {posargs:-vc}
deps =
.[test]
zope.testrunner
coverage

0 comments on commit 580f818

Please sign in to comment.