-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from matheusjardimb/test_setup
Initial test setup
- Loading branch information
Showing
9 changed files
with
33 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.3.2 | ||
0.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
maze_runner | ||
# Update the version bellow with the latest found at https://github.com/matheusjardimb/maze_runner/ | ||
maze_runner==0.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import os | ||
import glob | ||
|
||
from ..maze import Maze | ||
|
||
|
||
def test_validate_sample_maps(): | ||
folder_path = "../maps" | ||
txt_files = glob.glob(os.path.join(folder_path, "*.txt")) | ||
for file in txt_files: | ||
Maze(file) # Simply instantiate a maze using each map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ matplotlib==3.9.1 | |
numpy==2.0.1 | ||
|
||
# Tests | ||
# pytest==7.3.1 | ||
pytest==8.3.2 | ||
# pytest-cov==5.0.0 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.