We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d107584 commit 8596323Copy full SHA for 8596323
Makefile
@@ -13,8 +13,11 @@ lint:
13
14
test:
15
# setup test
16
+ python -m pytest -vv --cov=mylib test/test_logic.py
17
18
deploy:
19
# setup deoply
20
21
all: install format lint test deploy
22
+
23
+.PHONY: all test # make test does not work without this line
test/test_logic.py
@@ -0,0 +1,5 @@
1
+from mylib.logic import wiki
2
3
+def test_wiki():
4
+ result = wiki()
5
+ assert "god" in result
0 commit comments