File tree 4 files changed +30
-4
lines changed
flask_restplus_sqlalchemy
4 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 26
26
],
27
27
"problemMatcher" : []
28
28
},
29
- {
29
+ {
30
30
"label" : " Doumentation Service" ,
31
31
"type" : " shell" ,
32
- "command" :" python3" ,
32
+ "command" : " python3" ,
33
33
"args" : [
34
34
" -m" ,
35
35
" http.server" ,
38
38
" 127.0.0.1" ,
39
39
" --directory" ,
40
40
" ${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"
41
64
],
65
+ "problemMatcher" : []
42
66
}
43
67
]
44
68
}
Original file line number Diff line number Diff line change 11
11
class ApiModelFactory :
12
12
"""
13
13
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
16
16
17
17
18
18
:param Api api: flask_restplus Api instance to which is needed for \
Original file line number Diff line number Diff line change 2
2
bandit
3
3
coverage
4
4
sphinx-theme
5
+ pytest-cov
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ def setUpClass(cls):
19
19
20
20
cls .flask_app = Flask (__name__ )
21
21
cls .flask_app .config ['SQLALCHEMY_DATABASE_URI' ] = 'sqlite:///test.db'
22
+ cls .flask_app .config ['SQLALCHEMY_TRACK_MODIFICATIONS' ] = False
22
23
cls .api : Api = Api (
23
24
version = 'x' ,
24
25
title = 'test_api' ,
You can’t perform that action at this time.
0 commit comments