Skip to content

Commit c7949b2

Browse files
committed
Removed Pylint from workflow
1 parent 74007de commit c7949b2

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

.github/workflows/python-pytest.yml

-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,3 @@ jobs:
3535
- name: Lint with mypy
3636
run: |
3737
mypy --strict typing_validation
38-
- name: Lint with pylint
39-
run: |
40-
pylint --errors-only --rcfile=.pylintrc typing_validation
41-
pylint --exit-zero --rcfile=.pylintrc typing_validation

run-tests.bat

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@echo off
22
mypy --strict typing_validation
3-
pylint typing_validation
43
pytest test --cov=./typing_validation
54
coverage html
65
@pause

tox.ini

-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@ isolated_build = True
66
[testenv]
77
deps =
88
mypy
9-
pylint
109
pytest
11-
pytest-cov
1210
rich
1311
numpy
1412
setenv =
1513
PYTHONPATH = {toxinidir}
1614
commands =
1715
pytest test
1816
mypy --strict typing_validation
19-
pylint --errors-only typing_validation
20-
pylint --exit-zero typing_validation

0 commit comments

Comments
 (0)