Skip to content

Commit 66ebb2a

Browse files
author
beta
committed
update
1 parent ee4a06a commit 66ebb2a

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

.vscode/tasks.json

+26-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
],
2727
"problemMatcher": []
2828
},
29-
{
29+
{
3030
"label": "Doumentation Service",
3131
"type": "shell",
32-
"command":"python3",
32+
"command": "python3",
3333
"args": [
3434
"-m",
3535
"http.server",
@@ -38,7 +38,31 @@
3838
"127.0.0.1",
3939
"--directory",
4040
"${workspaceFolder}/docs/build/html"
41+
]
42+
},
43+
{
44+
"label": "Lint ALL",
45+
"type": "shell",
46+
"command": "python3",
47+
"args": [
48+
"-m",
49+
"pylint",
50+
"--rcfile=${workspaceFolder}/.pylintrc",
51+
"flask_restplus_sqlalchemy"
52+
],
53+
"problemMatcher": []
54+
},
55+
{
56+
"label": "Bandit",
57+
"type": "shell",
58+
"command": "python3",
59+
"args": [
60+
"-m",
61+
"bandit",
62+
"-r",
63+
"flask_restplus_sqlalchemy"
4164
],
65+
"problemMatcher": []
4266
}
4367
]
4468
}

flask_restplus_sqlalchemy/factory.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
class ApiModelFactory:
1212
"""
1313
Api Model Factory takes in Flask Rest API and SqlAlchemy models then
14-
generates Flask Rest API Models needed for use with swagger and
15-
marshal
14+
generates Flask Rest API Models needed for use with swagger and
15+
marshal
1616
1717
1818
:param Api api: flask_restplus Api instance to which is needed for \

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ pylint
22
bandit
33
coverage
44
sphinx-theme
5+
pytest-cov

test/test_factory.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def setUpClass(cls):
1919

2020
cls.flask_app = Flask(__name__)
2121
cls.flask_app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///test.db'
22+
cls.flask_app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
2223
cls.api: Api = Api(
2324
version='x',
2425
title='test_api',

0 commit comments

Comments
 (0)