1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-21 15:34:18 +00:00

Add full run launch config

This commit is contained in:
Steffo 2023-04-20 01:08:04 +02:00
parent 0dfcc775f8
commit bd754ac8ba
Signed by: steffo
GPG key ID: 2A24051445686895

16
.vscode/launch.json vendored
View file

@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: unimore_bda_6",
"name": "Test run",
"type": "python",
"request": "launch",
"module": "unimore_bda_6",
@ -14,6 +14,20 @@
"NLTK_DATA": "./data/nltk",
},
"cwd": "${workspaceFolder}",
},
{
"name": "Full run",
"type": "python",
"request": "launch",
"module": "unimore_bda_6",
"justMyCode": false,
"env": {
"NLTK_DATA": "./data/nltk",
"WORKING_SET_SIZE": "30000000",
"TARGET_RUNS": "10",
"MAXIMUM_RUNS": "100",
},
"cwd": "${workspaceFolder}",
}
]
}