From fd724e0915ecef75b7d5e0c4b9606520cb95a59c Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 23 Jul 2020 11:33:01 -0400 Subject: [PATCH] Apply suggestions from code review --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4eb12358..55349351 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,13 +37,13 @@ jobs: - name: Lint with flake8 run: | # one pass for show-stopper syntax errors or undefined names - pipenv run flake8 . --count --show-source --statistics + pipenv run flake8 archivebox --count --show-source --statistics # one pass for small stylistic things - pipenv run flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics + pipenv run flake8 archivebox --count --max-line-length="$MAX_LINE_LENGTH" --statistics - name: Lint with mypy run: | - pipenv run mypy . + pipenv run mypy archivebox test: runs-on: ${{ matrix.os }}