Skip to content

Commit 489618f

Browse files
committed
install correct dependencies for tests
1 parent e90704a commit 489618f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
pip install pylint mysqlclient black
21+
pip install -f requirements.txt
2222
- name: Check for compile errors with pylint
2323
run: |
2424
pylint -E $(git ls-files '*.py' schema-tool)

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ mysqlclient
22
black>=21.0 # need 21 for py3.10 compat
33
argparse
44
click<8.1 # 8.1 breaks black 21
5+
pylint

0 commit comments

Comments
 (0)