Skip to content

Commit

Permalink
add makefile for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
janschumann committed Nov 22, 2018
1 parent b96cfc2 commit 464f108
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pyenv
*.iml
.idea
# Byte-compiled / optimized / DLL files
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
deps:
python -m venv pyenv
pyenv/bin/pip install --upgrade -r requirements.txt

test: deps
python -m unittest discover

0 comments on commit 464f108

Please sign in to comment.