diff --git a/tests/conftest.py b/tests/conftest.py index 429f65043..d9b5f957e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -19,7 +19,7 @@ def pkg_pytest(tmpdir_factory) -> str: # Correct info should be extracted from the metadata and not filename dest_pkg = str(folder / "PYTEST-PKG-1.0.0.tar.gz") download_sdist_pkg( - "https://pypi.io/packages/source/p/pytest/pytest-5.3.5.tar.gz", dest_pkg + "https://pypi.org/packages/source/p/pytest/pytest-5.3.5.tar.gz", dest_pkg ) shutil.unpack_archive(dest_pkg, str(folder)) return dest_pkg diff --git a/tests/data/poetry/langchain-expected.yaml b/tests/data/poetry/langchain-expected.yaml index 3ecdd157b..d2dceafe4 100644 --- a/tests/data/poetry/langchain-expected.yaml +++ b/tests/data/poetry/langchain-expected.yaml @@ -6,7 +6,7 @@ package: version: {{ version }} source: - url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/langchain-{{ version }}.tar.gz + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/langchain-{{ version }}.tar.gz sha256: 95a93c966b1a2ff056c43870747aba1c39924c145179f0b8ffa27fef6a525610 build: diff --git a/tests/test_pypi.py b/tests/test_pypi.py index 2b04ce725..298cc676a 100644 --- a/tests/test_pypi.py +++ b/tests/test_pypi.py @@ -179,7 +179,7 @@ def test_get_extra_from_requires_dist(): def dask_sdist_metadata(): config = Configuration(name="dask") return get_sdist_metadata( - "https://pypi.io/packages/source/d/dask/dask-2022.6.1.tar.gz", + "https://pypi.org/packages/source/d/dask/dask-2022.6.1.tar.gz", config, ) @@ -283,7 +283,7 @@ def test_compose_test_section_with_console_scripts(): config = Configuration(name="pytest", version="7.1.2") metadata1 = get_pypi_metadata(config) metadata2 = get_sdist_metadata( - "https://pypi.io/packages/source/p/pytest/pytest-7.1.2.tar.gz", config + "https://pypi.org/packages/source/p/pytest/pytest-7.1.2.tar.gz", config ) metadata = merge_pypi_sdist_metadata(metadata1, metadata2, config) test_requirements = [] @@ -604,7 +604,7 @@ def test_get_sha256_from_pypi_metadata(): def test_injection_distutils(name): config = Configuration(name="hypothesis") data = get_sdist_metadata( - "https://pypi.io/packages/source/h/hypothesis/hypothesis-5.5.1.tar.gz", + "https://pypi.org/packages/source/h/hypothesis/hypothesis-5.5.1.tar.gz", config, ) assert sorted(data["install_requires"]) == sorted( @@ -621,7 +621,7 @@ def test_injection_distutils(name): def test_injection_distutils_pytest(): config = Configuration(name="pytest", version="5.3.2") data = get_sdist_metadata( - "https://pypi.io/packages/source/p/pytest/pytest-5.3.2.tar.gz", config + "https://pypi.org/packages/source/p/pytest/pytest-5.3.2.tar.gz", config ) assert sorted(data["install_requires"]) == sorted( [ @@ -646,7 +646,7 @@ def test_injection_distutils_pytest(): def test_injection_distutils_compiler_gsw(): config = Configuration(name="gsw", version="3.3.1") data = get_sdist_metadata( - "https://pypi.io/packages/source/g/gsw/gsw-3.3.1.tar.gz", config + "https://pypi.org/packages/source/g/gsw/gsw-3.3.1.tar.gz", config ) assert data.get("compilers") == ["c"] assert data["packages"] == ["gsw"] @@ -656,7 +656,7 @@ def test_injection_distutils_setup_reqs_ensure_list(): pkg_name, pkg_ver = "pyinstaller-hooks-contrib", "2020.7" config = Configuration(name=pkg_name, version=pkg_ver) data = get_sdist_metadata( - f"https://pypi.io/packages/source/p/{pkg_name}/{pkg_name}-{pkg_ver}.tar.gz", + f"https://pypi.org/packages/source/p/{pkg_name}/{pkg_name}-{pkg_ver}.tar.gz", config, ) assert data.get("setup_requires") == ["setuptools >= 30.3.0"] @@ -1112,7 +1112,7 @@ def test_recipe_extension(): recipe = create_python_recipe("azure-identity=1.3.1")[0] assert ( recipe["source"]["url"] - == "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/" + == "https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/" "azure-identity-{{ version }}.zip" )