Skip to content

Commit bd9c078

Browse files
authored
Merge pull request #3 from seamapi/add-test-dir
Add test directory
2 parents abcc95c + 6b3dc56 commit bd9c078

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
"""
22
SDK for the Seam API written in Python.
33
"""
4+
5+
from .todo import todo

test/__init__.py

Whitespace-only changes.

test/todo_test.py

Lines changed: 10 additions & 0 deletions
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)