Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
9edbd7e8
Commit
9edbd7e8
authored
Nov 20, 2017
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable hanging test on PyPy3. Ref #1202.
parent
d51a696e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
setuptools/tests/test_develop.py
setuptools/tests/test_develop.py
+9
-2
No files found.
setuptools/tests/test_develop.py
View file @
9edbd7e8
...
...
@@ -8,6 +8,7 @@ import site
import
sys
import
io
import
subprocess
import
platform
from
setuptools.extern
import
six
from
setuptools.command
import
test
...
...
@@ -153,8 +154,14 @@ class TestNamespaces:
with
test
.
test
.
paths_on_pythonpath
([
str
(
target
)]):
subprocess
.
check_call
(
develop_cmd
)
@
pytest
.
mark
.
skipif
(
bool
(
os
.
environ
.
get
(
"APPVEYOR"
)),
reason
=
"https://github.com/pypa/setuptools/issues/851"
)
@
pytest
.
mark
.
skipif
(
bool
(
os
.
environ
.
get
(
"APPVEYOR"
)),
reason
=
"https://github.com/pypa/setuptools/issues/851"
,
)
@
pytest
.
mark
.
skipif
(
platform
.
python_implementation
()
==
'PyPy'
and
six
.
PY3
,
reason
=
"https://github.com/pypa/setuptools/issues/1202"
,
)
def
test_namespace_package_importable
(
self
,
tmpdir
):
"""
Installing two packages sharing the same namespace, one installed
...
...
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