Skip to content

Commit f0f2912

Browse files
authored
Remove default development settings (#6376)
1 parent 3ab986a commit f0f2912

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ app_creds_real.py
4343
*.user
4444
*.sln.docstates
4545
.vs/
46-
.vscode
46+
.vscode/
4747

4848
# Windows image file caches
4949
Thumbs.db

.vscode/settings.json

-5
This file was deleted.

scripts/devops_tasks/setup_execute_tests.py

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ def prep_and_run_tests(targeted_packages, python_version, test_res):
9494

9595
if args.disablecov:
9696
test_results_arg.append('--no-cov')
97+
else:
98+
test_results_arg.extend(['--durations=10', '--cov', '--cov-report='])
9799

98100
if args.mark_arg:
99101
test_results_arg.extend(['-m', '"{}"'.format(args.mark_arg)])

setup.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[tool:pytest]
2-
addopts = --durations=10 --cov --cov-report=
32
norecursedirs = models

0 commit comments

Comments
 (0)