Skip to content

Commit

Permalink
Run black differently (#84)
Browse files Browse the repository at this point in the history
* Run black differently

* More python -m
  • Loading branch information
tommyod committed Dec 14, 2020
1 parent 46d7fe9 commit 53afc3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
pip install -r requirements.txt --quiet
pip install pep8>=1.7.1 flake8>=3.5.0 black pip --upgrade --quiet
pip install -e .
black KDEpy -l 120 --check
flake8 --show-source --ignore=F811,W293,W391,W292,W291,W504,W503,E231 --max-line-length=120 --exclude="*examples.py,testing.py,*kde.py" KDEpy
pytest KDEpy --doctest-modules --capture=sys
python -m black KDEpy -l 120 --check
python -m flake8 --show-source --ignore=F811,W293,W391,W292,W291,W504,W503,E231 --max-line-length=120 --exclude="*examples.py,testing.py,*kde.py" KDEpy
python -m pytest KDEpy --doctest-modules --capture=sys
# ======================= BUILD WHEELS AND UPLOAD TO PYPI ==================================

Expand Down

0 comments on commit 53afc3e

Please sign in to comment.