Skip to content

Commit 780f1df

Browse files
committed
Extend dependencies to recommended for pylint to e.g. pull in selenium as well.
1 parent 5785943 commit 780f1df

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/python-sanity-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
python -m pip install --upgrade pip
7878
pip install flake8 pylint #pytest
7979
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
80+
if [ -f recommended.txt ]; then pip install -r recommended.txt; fi
8081
# We may need git installed to get a full repo clone rather than unpacked archive
8182
- name: Check out source repository
8283
uses: actions/checkout@v4
@@ -126,6 +127,7 @@ jobs:
126127
python -m pip install --upgrade pip
127128
pip install flake8 pylint #pytest
128129
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
130+
if [ -f recommended.txt ]; then pip install -r recommended.txt; fi
129131
# We need git installed to get a full repo clone rather than unpacked archive
130132
- name: Check out source repository
131133
uses: actions/checkout@v4

0 commit comments

Comments
 (0)