We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a67821 commit 770a540Copy full SHA for 770a540
2 files changed
game/tests/cli/cli.py
@@ -17,7 +17,7 @@ def test_from_arg():
17
18
def test_from_file():
19
game_map = Map()
20
- game_map.load_from_file("game/tests/test_map.txt")
+ game_map.load_from_file("game/tests/cli/test_map.txt")
21
22
assert game_map.map == [
23
[False for _ in range(5)],
pyproject.toml
@@ -22,7 +22,7 @@ packages = ["game"]
test = ["pytest"]
24
[tool.pytest.ini_options]
25
-testpaths = ["game/tests/*"]
+testpaths = ["game/tests/*", "game/tests/cli/*"]
26
27
[project.scripts]
28
game = "game.main:app"
0 commit comments