Skip to content

Commit

Permalink
Spruce up pyproject with more info
Browse files Browse the repository at this point in the history
  • Loading branch information
glesica committed Feb 29, 2020
1 parent a931024 commit c50e918
Show file tree
Hide file tree
Showing 10 changed files with 733 additions and 638 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ __pycache__/
.pyrs990-cache/
*.ipynb_checkpoints/
.DS_Store
dist/

14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ help:
@echo format - format the code

analyze:
pipenv run mypy . tests/
poetry run mypy . tests/

check:
pipenv run pytest
poetry run pytest

check-fast:
pipenv run pytest -m "not network and not subprocess"
poetry run pytest -m "not network and not subprocess"

format:
pipenv run isort --recursive --use-parentheses --trailing-comma -y -w 80
pipenv run autoflake -r --in-place --remove-unused-variables .
pipenv run black -t py38 -l 80 .
poetry run isort --recursive --use-parentheses --trailing-comma -y -w 80
poetry run autoflake -r --in-place --remove-unused-variables .
poetry run black -t py38 -l 80 .

format-check:
pipenv run black -t py38 -l 80 --check .
poetry run black -t py38 -l 80 --check .
26 changes: 0 additions & 26 deletions Pipfile

This file was deleted.

Loading

0 comments on commit c50e918

Please sign in to comment.