mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
Python: Add Continuous Integration for Python
There are a lot of exceptions, but it's a start. This will ensure that no more issues get added / that issues get fixed before the code is added
This commit is contained in:
@@ -40,6 +40,7 @@ def build_maze(width: int, length: int) -> Maze:
|
||||
# Set to 1 if there is an exit down
|
||||
# Set to 2 if there is an exit right
|
||||
# Set to 3 if there are exits down and right
|
||||
assert width >= 2 and length >= 2
|
||||
|
||||
used = []
|
||||
walls = []
|
||||
|
||||
Reference in New Issue
Block a user