From 18421f1260e6e5ca54377d4875e8674875875e74 Mon Sep 17 00:00:00 2001 From: Slavik Svyrydiuk Date: Fri, 24 Nov 2023 08:43:58 +0100 Subject: [PATCH] fix: add pylint to requirements-test.txt --- .github/workflows/pylint.yml | 2 +- requirements-tests.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 974bbe8..0af0266 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -16,7 +16,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - pip3 install -r requirements/devel.txt + pip3 install -r requirements-test.txt - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py') diff --git a/requirements-tests.txt b/requirements-tests.txt index 24eb4a6..a08e32b 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -3,3 +3,4 @@ pytest==3.6 pytest-django==3.6 ipdb +pylint