Commit bd4289e0 authored by Jason Madden's avatar Jason Madden

need test deps to run pylint.

parent 7f2ddebc
...@@ -115,9 +115,6 @@ jobs: ...@@ -115,9 +115,6 @@ jobs:
python -m gevent.tests python -m gevent.tests
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
# Lint the code. Because this is a separate job, even if it fails fast # Lint the code. Because this is a separate job, even if it fails fast
# the tests will still run. Put it at the top for fast feedback. # the tests will still run. Put it at the top for fast feedback.
...@@ -126,17 +123,17 @@ jobs: ...@@ -126,17 +123,17 @@ jobs:
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python 3.9
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python-version }} python-version: 3.9
- name: pylint - name: pylint
# We need pylint, since above we're not installing a # We need pylint, since above we're not installing a
# requirements file. # requirements file.
run: | run: |
pip install -U pip pip install -U pip
pip install -U -e . pip install -U wheel cffi greenlet pylint
pip install -U pylint pip install -U -e .[test]
python -m pylint --limit-inference-results=1 --rcfile=.pylintrc gevent python -m pylint --limit-inference-results=1 --rcfile=.pylintrc gevent
# TODO: # TODO:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment