diff --git a/.drone.yml b/.drone.yml index c55f987..75d8317 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ steps: image: python:latest commands: - pip install -q --upgrade pre-commit poetry pytest pylint pydantic rich markdownify prettytable feedgen feedparser md2gemini readability-lxml - - pre-commit run --all-files +# - pre-commit run --all-files # - flake8 --ignore=E501,W503,E265 # - mypy --ignore-missing-imports ./tenkan/ # - pylint --disable=E1101,E0401,C0301,W1514,C0114 ./tenkan/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1318ae2..058c054 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -53,9 +53,9 @@ repos: entry: pylint --disable=E1101,E0401,C0301,W1514 --ignore=__init__.py --ignore-patterns=(.)*_test\.py,test_(.)*\.py language: system types: [python] -# - id: pytest -# name: Check pytest unit tests pass -# entry: pytest -# pass_filenames: false -# language: system -# types: [python] + - id: pytest + name: Check pytest unit tests pass + entry: pytest + pass_filenames: false + language: system + types: [python]