Skip to content

Commit

Permalink
Rename *.txt to *.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Jun 27, 2019
1 parent 888b9ce commit 5aeebc4
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions MANIFEST.in
@@ -1,7 +1,7 @@
include *.txt
include *.rst
include bootstrap.py
include buildout.cfg
include tox.ini
include .coveragerc
exclude .travis.yml
recursive-include src *.zcml *.txt
recursive-include src *.zcml *.rst
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -49,9 +49,9 @@ def read(*rnames):
author_email='zope-dev@zope.org',
description='Zope publication',
long_description=(
read('README.txt') +
read('README.rst') +
'\n\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
license='ZPL 2.1',
keywords="zope publication",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/zope/app/publication/tests/test_functional.py
Expand Up @@ -39,19 +39,19 @@ def setUpTestLayer(test):

def test_suite():
methodnotallowed = doctest.DocFileSuite(
'../methodnotallowed.txt', setUp=setUpTestLayer,
'../methodnotallowed.rst', setUp=setUpTestLayer,
optionflags=optionflags, checker=excchecker)
methodnotallowed.layer = PublicationLayer
notfound = doctest.DocFileSuite(
'../notfound.txt', setUp=setUpTestLayer,
'../notfound.rst', setUp=setUpTestLayer,
optionflags=optionflags)
notfound.layer = PublicationLayer
httpfactory = doctest.DocFileSuite(
'../httpfactory.txt', checker=checker, setUp=setUpTestLayer,
'../httpfactory.rst', checker=checker, setUp=setUpTestLayer,
optionflags=optionflags)
httpfactory.layer = PublicationLayer
site = doctest.DocFileSuite(
'../site.txt',
'../site.rst',
optionflags=optionflags)
site.layer = PublicationLayer
return unittest.TestSuite((
Expand Down

0 comments on commit 5aeebc4

Please sign in to comment.