From 54087c5bb87ceadfb37b8fd279ffed8579ebb1e7 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Mon, 22 Dec 2025 20:24:28 -0500 Subject: [PATCH] Fix CI: use python3 instead of python --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e349f99..5bdbc80 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,13 +15,13 @@ test: - build image: python:3.11 before_script: - - python -m venv .venv + - python3 -m venv .venv - source .venv/bin/activate - pip install --upgrade pip - pip install pytest pytest-asyncio aiofiles aiohttp script: - source .venv/bin/activate - - pytest tests/ -v --tb=short + - python3 -m pytest tests/ -v --tb=short rules: - if: $CI_PIPELINE_SOURCE == "push" - if: $CI_PIPELINE_SOURCE == "merge_request_event"