Added Dockerfile that runs the tests & VS code action

This will be how tests are executed locally
This commit is contained in:
Colin Basnett
2025-04-03 02:13:04 -07:00
parent 8471cc1996
commit e986f94081
4 changed files with 48 additions and 1 deletions

12
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "io_scene_psk_psa: test",
"type": "shell",
"command": "docker run -it --volume ${PWD}/io_scene_psk_psa:/addons/io_scene_psk_psa --volume ${PWD}/tests:/tests $(docker build -q .)"
}
]
}