Commit 85a617b3 authored by Jason Madden's avatar Jason Madden

Hmm, comment out lint. Why is the default 'build' step not running?

parent bd4289e0
...@@ -56,11 +56,11 @@ jobs: ...@@ -56,11 +56,11 @@ jobs:
GEVENTSETUP_EV_VERIFY: 1 GEVENTSETUP_EV_VERIFY: 1
# Disable some warnings produced by libev especially and also some Cython generated code. # Disable some warnings produced by libev especially and also some Cython generated code.
# Note that changing the value of these variables invalidates configure caches # Note that changing the value of these variables invalidates configure caches
CFLAGS: "-Ofast -pipe -Wno-strict-aliasing -Wno-comment" CFLAGS: -Ofast -pipe -Wno-strict-aliasing -Wno-comment
# # Uploading built wheels for releases. # Uploading built wheels for releases.
# TWINE_PASSWORD is encrypted and stored directly in the # TWINE_PASSWORD is encrypted and stored directly in the
# travis repo settings. # travis repo settings.
TWINE_USERNAME: "__token__" TWINE_USERNAME: __token__
### ###
# Part of caching; disabled for now. # Part of caching; disabled for now.
# #
...@@ -113,28 +113,28 @@ jobs: ...@@ -113,28 +113,28 @@ jobs:
- name: Run tests - name: Run tests
run: | run: |
python -m gevent.tests python -m gevent.tests
lint: # lint:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
# 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.
# We only need to do this on one version, and it should be Python 3, because # # We only need to do this on one version, and it should be Python 3, because
# pylint has stopped updating for Python 2. # # pylint has stopped updating for Python 2.
steps: # steps:
- name: checkout # - name: checkout
uses: actions/checkout@v2 # uses: actions/checkout@v2
- name: Set up Python 3.9 # - name: Set up Python 3.9
uses: actions/setup-python@v2 # uses: actions/setup-python@v2
with: # with:
python-version: 3.9 # 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 wheel cffi greenlet pylint # pip install -U wheel cffi greenlet pylint
pip install -U -e .[test] # 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:
# * Configure caching # * Configure caching
......
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