Skip to content

Commit

Permalink
Add requirements-dev to install_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
javajawa committed Aug 20, 2023
1 parent 53ce335 commit 876b59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mewbot/tools/install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 876b59f

Please sign in to comment.