This commit is contained in:
2025-04-18 08:14:37 -05:00
parent 4105cc2373
commit 2503141c34
25 changed files with 1127 additions and 278 deletions

51
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,51 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: convert_to_sportspress",
"type": "python",
"request": "launch",
"module": "src",
"args": [
"convert",
"sportspress",
"data/2025-hounds.csv",
"data/output/out.csv",
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar",
"./data/2025-hounds.csv"
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar config",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar-config",
"./data/2024-hounds.csv",
"./data/output/"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}

25
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.analysis.enablePytestSupport": false,
"launch": {
"configurations": [{
"name": "Python: Debug Tests",
"type": "python",
"request": "launch",
"program": "${file}",
"purpose": ["debug-test"],
"console": "integratedTerminal",
"justMyCode": false
}],
"compounds": []
},
}