We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abcc95c commit 6f13cb6Copy full SHA for 6f13cb6
Makefile
@@ -8,7 +8,7 @@ format:
8
@poetry run black .
9
10
lint:
11
- @poetry run pylint ./seam
+ @poetry run pylint ./seam ./test
12
@poetry run black --check .
13
@poetry run rstcheck README.rst
14
seam/__init__.py
@@ -1,3 +1,4 @@
1
"""
2
SDK for the Seam API written in Python.
3
4
+from .todo import todo
test/__init__.py
test/todo_test.py
@@ -0,0 +1,10 @@
+# pylint: disable=missing-docstring
+# pylint: disable=unused-import
+
+import pytest
5
6
+from seam import todo
7
+def test_todo():
+ assert todo(True) is True
0 commit comments