-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(test): update tests to expect PEP 753 compliant urls
Relates-to: python-poetry/poetry-core#807
- Loading branch information
Showing
3 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,7 +174,6 @@ def test_builder_installs_proper_files_for_standard_packages( | |
Name: simple-project | ||
Version: 1.2.3 | ||
Summary: Some description. | ||
Home-page: https://python-poetry.org | ||
License: MIT | ||
Keywords: packaging,dependency,poetry | ||
Author: Sébastien Eustace | ||
|
@@ -185,6 +184,7 @@ def test_builder_installs_proper_files_for_standard_packages( | |
Classifier: Topic :: Software Development :: Build Tools | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Project-URL: Documentation, https://python-poetry.org/docs | ||
Project-URL: Homepage, https://python-poetry.org | ||
Project-URL: Repository, https://github.com/python-poetry/poetry | ||
Description-Content-Type: text/x-rst | ||
|
@@ -342,14 +342,14 @@ def test_builder_generates_proper_metadata_when_multiple_readme_files( | |
Name: my-package | ||
Version: 0.1 | ||
Summary: Some description. | ||
Home-page: https://python-poetry.org | ||
License: MIT | ||
Author: Your Name | ||
Author-email: [email protected] | ||
Requires-Python: >=2.7,<3.0 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Project-URL: Homepage, https://python-poetry.org | ||
Description-Content-Type: text/x-rst | ||
Single Python | ||
|