fix: Changing the python testing shortcut to call pytest instead of running with unittest formatting.

This commit is contained in:
Finch 2024-10-12 18:00:53 -05:00
parent c42de5a1c3
commit 8ebcf9877a

View File

@ -18,7 +18,7 @@ return {
rust = 'cargo run',
},
test = {
python = 'python test',
python = 'pytest',
rust = 'cargo test',
},
benchmark = {