From bd959a3e0d626b2370013527ba11e2e1b320e123 Mon Sep 17 00:00:00 2001 From: pwwang Date: Mon, 20 Sep 2021 00:51:08 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Remove=20pylint=20from=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 33f72cb..395e011 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,9 @@ jobs: python -m pip install --upgrade pip python -m pip install poetry poetry config virtualenvs.create false - python -m pip install pylint poetry install -v - - name: Run pylint - run: pylint diot + # - name: Run pylint + # run: pylint diot - name: Test with pytest run: pytest tests/ --junitxml=junit/test-results-${{ matrix.python-version }}.xml - name: Upload pytest test results