Skip to content

Commit

Permalink
Get consistent with test vs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bsweger committed Jan 13, 2025
1 parent 0989318 commit b26ae8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ local_scheme = "no-local-version"
addopts = "--random-order"
tmp_path_retention_policy = "none"
testpaths = [
"tests",
"test",
]

[tool.ruff]
Expand Down
3 changes: 2 additions & 1 deletion src/pyprefab/templates/test/test_app.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
def initial_test():
"""Initial test file for {{ project_name }}."""
def test_insert_here():
assert True

2 changes: 2 additions & 0 deletions test/test_pyprefab.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_insert_here():
assert 1 == 1

0 comments on commit b26ae8c

Please sign in to comment.