network_inventory/.vscode/settings.json

17 lines
491 B
JSON
Raw Normal View History

2020-02-29 17:07:46 +01:00
{
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true,
2020-11-28 16:12:06 +01:00
"python.pythonPath": "backend/venv/bin/python",
2020-02-29 17:07:46 +01:00
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.testing.cwd": "backend",
"python.testing.pytestArgs": [
".",
2020-08-03 14:17:53 +02:00
"-n 6",
2020-08-03 14:20:27 +02:00
"--nomigrations",
"--ds=network_inventory.settings.local"
]
2020-02-29 17:07:46 +01:00
}