Skip to content

Commit 428f98f

Browse files
fixed workflows
1 parent bfc6555 commit 428f98f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/unit-test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ jobs:
1919
run: |
2020
python -m pip install --upgrade pip
2121
pip install -r requirements.txt # If you have a requirements file
22-
pip install coverage
23-
pip install pytest
24-
pip install coverage-badge
22+
pip install coverage pytest coverage-badge
2523
2624
2725
- name: Run tests and coverage

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
python-dotenv>=1.0.0,<2.0.0
2-
setuptools>=80.0.0
2+
# <82: pkg_resources (used by coverage-badge and similar tools) was removed in setuptools 82+
3+
setuptools>=80.0.0,<82.0.0
34
requests>=2.32.4,<3.0.0
45
urllib3>=2.6.3,<3.0.0
56
pylint>=2.0.0

0 commit comments

Comments
 (0)