From 876b59f2062090388df29f4bbe51c5bba0cd3fd9 Mon Sep 17 00:00:00 2001 From: Benedict Harcourt Date: Sun, 20 Aug 2023 17:13:48 +0000 Subject: [PATCH] Add requirements-dev to install_deps --- src/mewbot/tools/install_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mewbot/tools/install_deps.py b/src/mewbot/tools/install_deps.py index 9f0b3c38..7c528e19 100644 --- a/src/mewbot/tools/install_deps.py +++ b/src/mewbot/tools/install_deps.py @@ -25,7 +25,7 @@ def main() -> bool: for file in dot.glob("requirements-*.txt"): requirements.extend(("-r", str(file))) - for file in gather_paths("requirements.txt"): + for file in gather_paths("requirements.txt", "requirements-dev.txt"): requirements.extend(("-r", str(file))) subprocess.check_call([sys.executable, "-m", "pip", "install", *requirements])