Commit c9196740 by David Hotham Committed by GitHub

tests: make canonical names forwards compatible

parent 1c1cb921
...@@ -52,7 +52,7 @@ paginate-sqlalchemy (0.3.0) ...@@ -52,7 +52,7 @@ paginate-sqlalchemy (0.3.0)
sqlalchemy-audit (0.1.0) sqlalchemy-audit (0.1.0)
sqlalchemy-audit provides an easy way to set up revision tracking for your data. sqlalchemy-audit provides an easy way to set up revision tracking for your data.
transmogrify.sqlalchemy (1.0.2) transmogrify-sqlalchemy (1.0.2)
Feed data from SQLAlchemy into a transmogrifier pipeline Feed data from SQLAlchemy into a transmogrifier pipeline
sqlalchemy-schemadisplay (1.3) sqlalchemy-schemadisplay (1.3)
...@@ -96,4 +96,9 @@ sqlalchemy-sqlany (1.0.3) ...@@ -96,4 +96,9 @@ sqlalchemy-sqlany (1.0.3)
SAP Sybase SQL Anywhere dialect for SQLAlchemy SAP Sybase SQL Anywhere dialect for SQLAlchemy
""" """
assert tester.io.fetch_output() == expected # 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
...@@ -7,9 +7,9 @@ optional = false ...@@ -7,9 +7,9 @@ optional = false
python-versions = "*" python-versions = "*"
[package.extras] [package.extras]
dev = ["coverage", "hypothesis", "pympler", "pytest", "six", "zope.interface", "sphinx", "zope.interface"] dev = ["coverage", "hypothesis", "pympler", "pytest", "six", "zope-interface", "sphinx", "zope-interface"]
docs = ["sphinx", "zope.interface"] docs = ["sphinx", "zope-interface"]
tests = ["coverage", "hypothesis", "pympler", "pytest", "six", "zope.interface"] tests = ["coverage", "hypothesis", "pympler", "pytest", "six", "zope-interface"]
[[package]] [[package]]
name = "colorama" name = "colorama"
......
...@@ -1168,6 +1168,14 @@ def test_installer_with_pypi_repository( ...@@ -1168,6 +1168,14 @@ def test_installer_with_pypi_repository(
installer.run() installer.run()
expected = fixture("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) assert not DeepDiff(expected, locker.written_data, ignore_order=True)
......
...@@ -832,6 +832,14 @@ def test_installer_with_pypi_repository( ...@@ -832,6 +832,14 @@ def test_installer_with_pypi_repository(
installer.run() installer.run()
expected = fixture("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) assert not DeepDiff(expected, locker.written_data, ignore_order=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment