diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-31 12:15:19 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-31 12:15:19 +0100 |
commit | af2b9c55ef2b9e821119124be727f4beb0e2b7b9 (patch) | |
tree | 94ec5c93d1e6e001668e8690b411443c7a4afc8b | |
parent | 5c6b9e60547a5884b7debe450aa0ddaea075d4f9 (diff) |
added Makefile
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a4a97cb --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +test: + pytest --tb=short -v + +test-fast: + pytest -k "not test_functional" --tb=short |