Remove default development settings (#6376)
This commit is contained in:
Родитель
3ab986a4ed
Коммит
f0f29125c7
|
@ -43,7 +43,7 @@ app_creds_real.py
|
|||
*.user
|
||||
*.sln.docstates
|
||||
.vs/
|
||||
.vscode
|
||||
.vscode/
|
||||
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"git.ignoreLimitWarning": true,
|
||||
"python.testing.pytestArgs": [],
|
||||
"python.testing.pytestEnabled": true
|
||||
}
|
|
@ -94,6 +94,8 @@ if __name__ == '__main__':
|
|||
|
||||
if args.disablecov:
|
||||
test_results_arg.append('--no-cov')
|
||||
else:
|
||||
test_results_arg.extend(['--durations=10', '--cov', '--cov-report='])
|
||||
|
||||
if args.mark_arg:
|
||||
test_results_arg.extend(['-m', '"{}"'.format(args.mark_arg)])
|
||||
|
|
|
@ -1,3 +1,2 @@
|
|||
[tool:pytest]
|
||||
addopts = --durations=10 --cov --cov-report=
|
||||
norecursedirs = models
|
Загрузка…
Ссылка в новой задаче