Skip to content

Commit

Permalink
Add makefile test targets
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Sep 11, 2022
1 parent 56bf959 commit fe448f3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,11 @@ docs: clean-docs .venv
.venv/bin/python -m pip install --upgrade pip
.venv/bin/python -m pip install -e .

.PHONY: test
test: .venv
.venv/bin/python -m pip install -e .[test]
py.test tests

.PHONY: test-all
test-all:
tox

0 comments on commit fe448f3

Please sign in to comment.