fix: use requirements.txt in CI and release workflows

This commit is contained in:
nox-project
2026-04-11 15:11:16 +02:00
parent 47bd936b6d
commit 200a21bf49
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: pip install pytest pytest-asyncio aiohttp pydantic colorama rich fpdf2 dnspython phonenumbers stem cloudscraper run: pip install -r requirements.txt pytest pytest-asyncio
- name: Run tests - name: Run tests
run: python -m pytest tests/ -v run: python -m pytest tests/ -v
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
python-version: "3.11" python-version: "3.11"
- name: Install dependencies - name: Install dependencies
run: pip install pytest pytest-asyncio aiohttp pydantic colorama rich fpdf2 dnspython phonenumbers stem cloudscraper run: pip install -r requirements.txt pytest pytest-asyncio
- name: Run tests - name: Run tests
run: python -m pytest tests/ -v run: python -m pytest tests/ -v