From 7f5565826900a2d164bef859f51120684a54bfe0 Mon Sep 17 00:00:00 2001 From: Andrii Labych Date: Sun, 30 Mar 2025 14:57:27 +0300 Subject: [PATCH] Updated main.yml --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d245ecd..7a8abf18 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,11 +20,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements/dev.txt + pip install flask pip install pytest + pip install -r requirements/dev.txt || true # якщо є - name: Run tests run: | python -m pytest tests +