diff options
author | benadha <benawiadha@gmail.com> | 2022-01-10 20:39:11 +0700 |
---|---|---|
committer | benadha <benawiadha@gmail.com> | 2022-01-10 20:39:11 +0700 |
commit | ae8092351b2e7ed2d58df8d56bcb4a014ce7a29e (patch) | |
tree | 1c1977deaf415389cb1f9be7758f3c2502563d14 | |
parent | 2e23de06b1c1a20172aa60b72848a460105ec260 (diff) | |
download | epy-ae8092351b2e7ed2d58df8d56bcb4a014ce7a29e.tar.gz |
Added tests command in Makefile
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,12 @@ +.PHONY: tests +.DEFAULT_GOAL := tests + +requirements: + poetry install --no-root + +tests: + python -m pytest -vv + release: python setup.py sdist bdist_wheel twine upload --skip-existing dist/* |