summaryrefslogtreecommitdiff
path: root/dev-python/pydocstyle/files/pydocstyle-6.1.1-disarm-pip-install.patch
blob: b0467a136435830761be841a492d7b84b3f74efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 46947c9dca95caeb7b1f4348994d1aa2b8db93ec Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
Date: Tue, 18 May 2021 10:02:16 +0200
Subject: [PATCH] Disarm install_package fixture

---
 src/tests/test_integration.py | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/tests/test_integration.py b/src/tests/test_integration.py
index eb4994f..4242476 100644
--- a/src/tests/test_integration.py
+++ b/src/tests/test_integration.py
@@ -128,14 +128,7 @@ def install_package(request):
     This is so we can run the integration tests on the installed console
     script.
     """
-    cwd = os.path.join(os.path.dirname(__file__), '..', '..')
-    subprocess.check_call(
-        [sys.executable, "-m", "pip", "install", "-e", "."], cwd=cwd
-    )
     yield
-    subprocess.check_call(
-        [sys.executable, "-m", "pip", "uninstall", "-y", "pydocstyle"], cwd=cwd
-    )
 
 
 @pytest.yield_fixture(scope="function", params=['ini', 'toml'])
-- 
2.31.1