Enforce psf/black and flake8 on tests/

This commit is contained in:
Jeremy Singer-Vine
2020-12-16 22:30:44 -05:00
parent b4b0282730
commit d234f05c13
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -27,10 +27,10 @@ jobs:
pip install -r requirements-dev.txt
- name: Validate against psf/black
run: python -m black --check pdfplumber
run: python -m black --check pdfplumber tests
- name: Validate against flake8
run: python -m flake8 pdfplumber
run: python -m flake8 pdfplumber tests
test:
needs: lint