[IMP] athene prevent seeing .pyc

This commit is contained in:
Jared Kipe
2021-12-20 07:30:51 -08:00
parent 48399ae909
commit 21a1b9a7fa
2 changed files with 37 additions and 0 deletions

View File

@@ -28,6 +28,26 @@
"--test-enable", "--no-xmlrpc", "--stop-after-init"], "--test-enable", "--no-xmlrpc", "--stop-after-init"],
"console": "integratedTerminal" "console": "integratedTerminal"
}, },
{
"name": "Odoo: INIT 'hr_payroll_hibou'",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-run.py",
"args": ["-i", "hr_payroll_hibou",
"-u", "hr_payroll_hibou",
"--stop-after-init"],
"console": "integratedTerminal"
},
{
"name": "Odoo: TEST 'hr_payroll_hibou'",
"type": "python",
"request": "launch",
"program": "/opt/odoo/hibou-suite/odoo-run.py",
"args": ["-i", "hr_payroll_hibou",
"-u", "hr_payroll_hibou",
"--test-enable", "--no-xmlrpc", "--stop-after-init"],
"console": "integratedTerminal"
},
{ {
"name": "Odoo: server", "name": "Odoo: server",
"type": "python", "type": "python",

17
.theia/settings.json Normal file
View File

@@ -0,0 +1,17 @@
{
"workbench.colorTheme": "Hibou Dark",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": {"when": "$(basename).py"},
"**/__pycache__": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
}
}