From c220de8969070dfefca79122d355afdc22f6e41a Mon Sep 17 00:00:00 2001 From: MoonTestUse1 Date: Mon, 6 Jan 2025 08:56:57 +0600 Subject: [PATCH] Fix CI configuration: add pytest installation --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f48ff3..59c4b43 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,13 +13,15 @@ services: before_script: - python -V + - python -m pip install --upgrade pip + - pip install pytest - pip install -r backend/requirements.txt test: stage: test script: - cd backend - - pytest -v + - python -m pytest -v only: - main - Testing