From a6212ed1b4e91525d809c2a8a5a438edeccba7b8 Mon Sep 17 00:00:00 2001 From: Andrii Labych Date: Sun, 30 Mar 2025 14:52:34 +0300 Subject: [PATCH] umain.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 3bd882e9..7d245ecd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,9 +20,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e .[dev] + pip install -r requirements/dev.txt + pip install pytest - name: Run tests run: | python -m pytest tests +