Skip to content

Commit 6f13cb6

Browse files
committed
Add test directory
1 parent abcc95c commit 6f13cb6

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ format:
88
@poetry run black .
99

1010
lint:
11-
@poetry run pylint ./seam
11+
@poetry run pylint ./seam ./test
1212
@poetry run black --check .
1313
@poetry run rstcheck README.rst
1414

seam/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
"""
22
SDK for the Seam API written in Python.
33
"""
4+
from .todo import todo

test/__init__.py

Whitespace-only changes.

test/todo_test.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# pylint: disable=missing-docstring
2+
# pylint: disable=unused-import
3+
4+
import pytest
5+
6+
from seam import todo
7+
8+
9+
def test_todo():
10+
assert todo(True) is True

0 commit comments

Comments
 (0)