mirror of
https://gitlab.com/Thoscellen/Wallset.git
synced 2025-05-31 19:04:51 +02:00
Rends git ignorant du cache python Fixes les commandes d'execution pour python en local Ajoutes une commande d'execution de la CI selon la branche cicd
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Gen-Manifest Valid_set",
|
|
"cwd": "${workspaceFolder}/src",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"start"
|
|
],
|
|
"env": {
|
|
"ENTRY_FOLDER": "${workspaceFolder}/test",
|
|
"PACKAGE_NAME": "valid_set"
|
|
},
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
},
|
|
{
|
|
"name": "Test-Manifest Valid_set",
|
|
"cwd": "${workspaceFolder}/src",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test"
|
|
],
|
|
"env": {
|
|
"ENTRY_FOLDER": "${workspaceFolder}/test",
|
|
"PACKAGE_NAME": "valid_set"
|
|
},
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
},
|
|
{
|
|
"name": "Test-Images Valid_set",
|
|
"cwd": "${workspaceFolder}/src",
|
|
"console": "internalConsole",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "pytest",
|
|
"args": [
|
|
"test_images.py",
|
|
"-rA",
|
|
"--tb=line",
|
|
"--color=yes"
|
|
],
|
|
"env": {
|
|
"ENTRY_FOLDER": "${workspaceFolder}/test",
|
|
"PACKAGE_NAME": "valid_set"
|
|
},
|
|
"justMyCode": true
|
|
},
|
|
]
|
|
} |