Skip to content

Commit e99da05

Browse files
committed
Add and configure tests, update .gitignore, add empty .dev
1 parent 949371a commit e99da05

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

.dev

Whitespace-only changes.

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ wheels/
88

99
# Virtual environments
1010
.venv
11+
12+
# Environment variables
13+
.env
14+
15+
# Environment secrets
16+
.secrets

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ akpy = "akpy:main"
4545
[build-system]
4646
requires = ["hatchling"]
4747
build-backend = "hatchling.build"
48+
49+
[tool.pytest.ini_options]
50+
testpaths = ["tests"]

tests/__init__.py

Whitespace-only changes.

tests/test_akpy.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from akpy import main
2+
3+
def test_main():
4+
assert main() is None

0 commit comments

Comments
 (0)