diff --git a/Makefile b/Makefile index c019292..b77a4ce 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ format: @poetry run black . lint: - @poetry run pylint ./seam + @poetry run pylint ./seam ./test @poetry run black --check . @poetry run rstcheck README.rst diff --git a/seam/__init__.py b/seam/__init__.py index 95fa20a..cd6366f 100644 --- a/seam/__init__.py +++ b/seam/__init__.py @@ -1,3 +1,5 @@ """ SDK for the Seam API written in Python. """ + +from .todo import todo diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/todo_test.py b/test/todo_test.py new file mode 100644 index 0000000..45ef86f --- /dev/null +++ b/test/todo_test.py @@ -0,0 +1,10 @@ +# pylint: disable=missing-docstring +# pylint: disable=unused-import + +import pytest + +from seam import todo + + +def test_todo(): + assert todo(True) is True