Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
34c6da4c
Commit
34c6da4c
authored
May 22, 2022
by
David Hotham
Committed by
Arun Babu Neelicattu
May 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused backwards-compatibility fixes
parent
473f95df
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
17 deletions
+0
-17
tests/console/commands/test_search.py
+0
-3
tests/installation/test_installer.py
+0
-7
tests/installation/test_installer_old.py
+0
-7
No files found.
tests/console/commands/test_search.py
View file @
34c6da4c
...
...
@@ -96,9 +96,6 @@ sqlalchemy-sqlany (1.0.3)
SAP Sybase SQL Anywhere dialect for SQLAlchemy
"""
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
output
=
tester
.
io
.
fetch_output
()
output
=
output
.
replace
(
"transmogrify.sqlalchemy"
,
"transmogrify-sqlalchemy"
)
assert
output
==
expected
tests/installation/test_installer.py
View file @
34c6da4c
...
...
@@ -1169,13 +1169,6 @@ def test_installer_with_pypi_repository(
expected
=
fixture
(
"with-pypi-repository"
)
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
extras
=
locker
.
written_data
[
"package"
][
0
][
"extras"
]
for
key
,
values
in
list
(
extras
.
items
()):
extras
[
key
]
=
[
value
.
replace
(
"zope.interface"
,
"zope-interface"
)
for
value
in
values
]
assert
not
DeepDiff
(
expected
,
locker
.
written_data
,
ignore_order
=
True
)
...
...
tests/installation/test_installer_old.py
View file @
34c6da4c
...
...
@@ -833,13 +833,6 @@ def test_installer_with_pypi_repository(
expected
=
fixture
(
"with-pypi-repository"
)
# TODO remove this when https://github.com/python-poetry/poetry-core/pull/328
# reaches a published version of poetry-core.
extras
=
locker
.
written_data
[
"package"
][
0
][
"extras"
]
for
key
,
values
in
list
(
extras
.
items
()):
extras
[
key
]
=
[
value
.
replace
(
"zope.interface"
,
"zope-interface"
)
for
value
in
values
]
assert
not
DeepDiff
(
expected
,
locker
.
written_data
,
ignore_order
=
True
)
...
...
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