Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
persistent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
persistent
Commits
9b8ca93f
Commit
9b8ca93f
authored
Aug 27, 2018
by
Marius Gedminas
Committed by
GitHub
Aug 27, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #90 from zopefoundation/fix-tox
Make test pass when run with 'tox'
parents
204137f3
a7eb124f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
persistent/tests/test_docs.py
persistent/tests/test_docs.py
+6
-3
No files found.
persistent/tests/test_docs.py
View file @
9b8ca93f
...
@@ -33,12 +33,15 @@ import manuel.doctest
...
@@ -33,12 +33,15 @@ import manuel.doctest
import
manuel.ignore
import
manuel.ignore
import
manuel.testing
import
manuel.testing
def
test_suite
():
def
test_suite
():
here
=
os
.
path
.
dirname
(
__file__
)
here
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)
)
while
not
os
.
path
.
exists
(
os
.
path
.
join
(
here
,
'setup.py'
)):
while
not
os
.
path
.
exists
(
os
.
path
.
join
(
here
,
'setup.py'
)):
here
=
os
.
path
.
join
(
here
,
'..'
)
prev
,
here
=
here
,
os
.
path
.
dirname
(
here
)
if
here
==
prev
:
# Let's avoid infinite loops at root
raise
AssertionError
(
'could not find my setup.py'
)
here
=
os
.
path
.
abspath
(
here
)
docs
=
os
.
path
.
join
(
here
,
'docs'
,
'api'
)
docs
=
os
.
path
.
join
(
here
,
'docs'
,
'api'
)
files_to_test
=
(
files_to_test
=
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment