From a3c4c19e541b0987cf0a314dcf88f464fcb85e6f Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Mon, 22 Dec 2025 20:44:18 -0500 Subject: [PATCH] Fix CI to install from requirements.txt --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5bdbc80..348486d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,8 @@ test: - python3 -m venv .venv - source .venv/bin/activate - pip install --upgrade pip - - pip install pytest pytest-asyncio aiofiles aiohttp + - pip install -r requirements.txt + - pip install pytest pytest-asyncio script: - source .venv/bin/activate - python3 -m pytest tests/ -v --tb=short