File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -1945,28 +1945,6 @@ def test_installing_scripts_on_path_does_not_print_warning(
1945
1945
assert "--no-warn-script-location" not in result .stderr
1946
1946
1947
1947
1948
- def test_installed_files_recorded_in_deterministic_order (
1949
- script : PipTestEnvironment , data : TestData
1950
- ) -> None :
1951
- """
1952
- Ensure that we record the files installed by a package in a deterministic
1953
- order, to make installs reproducible.
1954
- """
1955
- to_install = data .packages .joinpath ("FSPkg" )
1956
- result = script .pip ("install" , to_install )
1957
- fspkg_folder = script .site_packages / "fspkg"
1958
- egg_info = f"FSPkg-0.1.dev0-py{ pyversion } .egg-info"
1959
- installed_files_path = script .site_packages / egg_info / "installed-files.txt"
1960
- result .did_create (fspkg_folder )
1961
- result .did_create (installed_files_path )
1962
-
1963
- installed_files_path = result .files_created [installed_files_path ].full
1964
- installed_files_lines = [
1965
- p for p in Path (installed_files_path ).read_text ().split ("\n " ) if p
1966
- ]
1967
- assert installed_files_lines == sorted (installed_files_lines )
1968
-
1969
-
1970
1948
def test_install_conflict_results_in_warning (
1971
1949
script : PipTestEnvironment , data : TestData
1972
1950
) -> None :
You can’t perform that action at this time.
0 commit comments