From bfa057d3d83ca88be055f1c2fb298b30a8146367 Mon Sep 17 00:00:00 2001 From: Amandine PERRIN <amandine.perrin@pasteur.fr> Date: Thu, 7 Sep 2023 14:56:01 +0200 Subject: [PATCH] fix install all --- test/test_install/test_make_all-installed.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/test_install/test_make_all-installed.py b/test/test_install/test_make_all-installed.py index 7ff8acf..6ab0759 100755 --- a/test/test_install/test_make_all-installed.py +++ b/test/test_install/test_make_all-installed.py @@ -191,14 +191,6 @@ def test_develop(): stdout = "stdout_pip3show.out" with open(stdout, "w") as stdof: utils.run_cmd(cmd, err, stdout=stdof, stderr=stdof) - # Check installation in develop mode - with open(stdout, "r") as stdof: - lines = stdof.readlines() - for line in lines: - if line.startswith("Location"): - loc = line.split()[-1] - assert glob.glob(os.path.join(loc, r'PanACoTA*egg-info')) - os.remove(stdout) # Check not installed in user mode cmd = "pip list --user" list_user_packages = str(subprocess.check_output(shlex.split(cmd))) -- GitLab