Skip to content

Commit

Permalink
Add build check for python.py setup (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldiamant committed Jan 11, 2023
1 parent 16ba29b commit 319e0bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ flake8:
mypy:
mypy

lint: black flake8 mypy
sdist-check:
python setup.py check -s
python setup.py check -s 2>&1 | (! grep -qEi 'error|warning')

lint: black flake8 mypy sdist-check

# ---- Unit Tests (no algod) ---- #

Expand Down

0 comments on commit 319e0bb

Please sign in to comment.