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
0553c91f
Commit
0553c91f
authored
Aug 21, 2018
by
Alexander Duryagin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove xfail for namespace tests that actually pass in AppVeyor
parent
1fc75056
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
setuptools/tests/test_namespaces.py
setuptools/tests/test_namespaces.py
+1
-13
No files found.
setuptools/tests/test_namespaces.py
View file @
0553c91f
...
...
@@ -59,10 +59,6 @@ class TestNamespaces:
with
test
.
test
.
paths_on_pythonpath
(
map
(
str
,
targets
)):
subprocess
.
check_call
(
try_import
)
@
pytest
.
mark
.
xfail
(
os
.
environ
.
get
(
"APPVEYOR"
),
reason
=
"https://github.com/pypa/setuptools/issues/851"
,
)
def
test_pkg_resources_import
(
self
,
tmpdir
):
"""
Ensure that a namespace package doesn't break on import
...
...
@@ -87,10 +83,6 @@ class TestNamespaces:
with
test
.
test
.
paths_on_pythonpath
([
str
(
target
)]):
subprocess
.
check_call
(
try_import
)
@
pytest
.
mark
.
xfail
(
os
.
environ
.
get
(
"APPVEYOR"
),
reason
=
"https://github.com/pypa/setuptools/issues/851"
,
)
def
test_namespace_package_installed_and_cwd
(
self
,
tmpdir
):
"""
Installing a namespace packages but also having it in the current
...
...
@@ -118,11 +110,7 @@ class TestNamespaces:
with
test
.
test
.
paths_on_pythonpath
([
str
(
target
)]):
subprocess
.
check_call
(
pkg_resources_imp
,
cwd
=
str
(
pkg_A
))
@
pytest
.
mark
.
xfail
(
os
.
environ
.
get
(
"APPVEYOR"
),
reason
=
"https://github.com/pypa/setuptools/issues/851"
,
)
def
test_packages_in_the_sampe_namespace_installed_and_cwd
(
self
,
tmpdir
):
def
test_packages_in_the_same_namespace_installed_and_cwd
(
self
,
tmpdir
):
"""
Installing one namespace package and also have another in the same
namespace in the current working directory, both of them must be
...
...
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