Split examples

This commit is contained in:
Andras Schmelczer 2022-05-25 22:54:21 +02:00
parent b4492da2e6
commit df1c9418ee
No known key found for this signature in database
GPG key ID: 39260B5B0614A13E
11 changed files with 401 additions and 252 deletions

6
.vscode/tasks.json vendored
View file

@ -4,9 +4,9 @@
{
"label": "Format and lint Python",
"type": "shell",
"command": "source .env/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh examples",
"command": "source .env/bin/activate && scripts/format-python.sh great_ai && scripts/format-python.sh examples/simple && scripts/format-python.sh examples/complex",
"windows": {
"command": ".env/bin/activate.bat; scripts/format-python.sh great_ai; scripts\\format-python.sh examples"
"command": ".env\\bin\\activate.bat; scripts\\format-python.sh great_ai; scripts\\format-python.sh examples\\simple; scripts\\format-python.sh examples\\complex"
},
"group": "test",
"presentation": {
@ -22,7 +22,7 @@
"type": "shell",
"command": "source .env/bin/activate && python3 -m pytest great_ai",
"windows": {
"command": ".env/bin/activate.bat; python3 -m pytest great_ai"
"command": ".env\\bin\\activate.bat; python3 -m pytest great_ai"
},
"group": "test",
"presentation": {