diff options
author | toonn <toonn@toonn.io> | 2022-06-13 15:50:28 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2022-06-13 15:50:28 +0200 |
commit | d8311106abd2925e62650ca371f46bb7648463ca (patch) | |
tree | 8e0fac6dc5698037c403a4526ba0209b9d91a350 | |
parent | ff909fab98f5941d9e59c983fed787256c35e12d (diff) | |
parent | 9473bd0612d3ca6b3a2a62b8d9ea5a103503eadb (diff) | |
download | ranger-d8311106abd2925e62650ca371f46bb7648463ca.tar.gz |
Merge branch 'pylint'
-rw-r--r-- | .github/workflows/python.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index dc41318e..fe2c7e59 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -28,7 +28,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + # We need to ignore PyLint because we can't install the one we need for + # Python 2.7 and 3.5 + pip install -r <(grep -v pylint requirements.txt) - name: Flake8 and test run: | make test_flake8 test_doctest test_other |