From 4904bb7dbf6e6cd3ec95abfca3d34f920a67dc18 Mon Sep 17 00:00:00 2001 From: outmaneuver <72673084+outmaneuver@users.noreply.github.com> Date: Sun, 27 Oct 2024 03:36:19 +0200 Subject: [PATCH] Fix pytest command not found for the actions Add `pytest` to the list of dependencies in `requirements.txt`. * Ensure `pytest` is available for the `Run tests` step in the GitHub Actions workflow file `.github/workflows/auto_merge.yml` --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/outmaneuver/selfbot?shareId=XXXX-XXXX-XXXX-XXXX). --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index b411f32..71335ee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ pymongo mysql-connector-python redis python-dotenv +pytest