Skip to content

Commit cf63e7c

Browse files
committed
chore: add flask as integration test
1 parent 7912275 commit cf63e7c

File tree

2 files changed

+142
-0
lines changed

2 files changed

+142
-0
lines changed

tests/integration/repos.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ repositories:
1919
- unittest
2020
nondeterministic: true
2121

22+
- name: flask
23+
url: https://github.com/pallets/flask
24+
ref: 3.1.2
25+
frameworks:
26+
- pytest
27+
2228
- name: python-unittest-tutorial
2329
url: https://github.com/cgoldberg/python-unittest-tutorial
2430
ref: master
Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
{
2+
"repository": "flask",
3+
"ref": "3.1.2",
4+
"expectedFrameworks": ["pytest"],
5+
"fileCount": 45,
6+
"testCount": 389,
7+
"frameworkCounts": {
8+
"pytest": 45
9+
},
10+
"sampleFiles": [
11+
{
12+
"path": "examples/javascript/tests/test_js_example.py",
13+
"framework": "pytest",
14+
"suiteCount": 0,
15+
"testCount": 2
16+
},
17+
{
18+
"path": "examples/tutorial/tests/test_auth.py",
19+
"framework": "pytest",
20+
"suiteCount": 0,
21+
"testCount": 5
22+
},
23+
{
24+
"path": "examples/tutorial/tests/test_blog.py",
25+
"framework": "pytest",
26+
"suiteCount": 0,
27+
"testCount": 8
28+
},
29+
{
30+
"path": "examples/tutorial/tests/test_db.py",
31+
"framework": "pytest",
32+
"suiteCount": 0,
33+
"testCount": 2
34+
},
35+
{
36+
"path": "examples/tutorial/tests/test_factory.py",
37+
"framework": "pytest",
38+
"suiteCount": 0,
39+
"testCount": 2
40+
},
41+
{
42+
"path": "tests/test_appctx.py",
43+
"framework": "pytest",
44+
"suiteCount": 0,
45+
"testCount": 14
46+
},
47+
{
48+
"path": "tests/test_apps/blueprintapp/__init__.py",
49+
"framework": "pytest",
50+
"suiteCount": 0,
51+
"testCount": 0
52+
},
53+
{
54+
"path": "tests/test_apps/blueprintapp/apps/__init__.py",
55+
"framework": "pytest",
56+
"suiteCount": 0,
57+
"testCount": 0
58+
},
59+
{
60+
"path": "tests/test_apps/blueprintapp/apps/admin/__init__.py",
61+
"framework": "pytest",
62+
"suiteCount": 0,
63+
"testCount": 0
64+
},
65+
{
66+
"path": "tests/test_apps/blueprintapp/apps/frontend/__init__.py",
67+
"framework": "pytest",
68+
"suiteCount": 0,
69+
"testCount": 0
70+
},
71+
{
72+
"path": "tests/test_apps/cliapp/__init__.py",
73+
"framework": "pytest",
74+
"suiteCount": 0,
75+
"testCount": 0
76+
},
77+
{
78+
"path": "tests/test_apps/cliapp/app.py",
79+
"framework": "pytest",
80+
"suiteCount": 0,
81+
"testCount": 0
82+
},
83+
{
84+
"path": "tests/test_apps/cliapp/factory.py",
85+
"framework": "pytest",
86+
"suiteCount": 0,
87+
"testCount": 0
88+
},
89+
{
90+
"path": "tests/test_apps/cliapp/importerrorapp.py",
91+
"framework": "pytest",
92+
"suiteCount": 0,
93+
"testCount": 0
94+
},
95+
{
96+
"path": "tests/test_apps/cliapp/inner1/__init__.py",
97+
"framework": "pytest",
98+
"suiteCount": 0,
99+
"testCount": 0
100+
},
101+
{
102+
"path": "tests/test_apps/cliapp/inner1/inner2/__init__.py",
103+
"framework": "pytest",
104+
"suiteCount": 0,
105+
"testCount": 0
106+
},
107+
{
108+
"path": "tests/test_apps/cliapp/inner1/inner2/flask.py",
109+
"framework": "pytest",
110+
"suiteCount": 0,
111+
"testCount": 0
112+
},
113+
{
114+
"path": "tests/test_apps/cliapp/multiapp.py",
115+
"framework": "pytest",
116+
"suiteCount": 0,
117+
"testCount": 0
118+
},
119+
{
120+
"path": "tests/test_apps/helloworld/hello.py",
121+
"framework": "pytest",
122+
"suiteCount": 0,
123+
"testCount": 0
124+
},
125+
{
126+
"path": "tests/test_apps/helloworld/wsgi.py",
127+
"framework": "pytest",
128+
"suiteCount": 0,
129+
"testCount": 0
130+
}
131+
],
132+
"stats": {
133+
"filesMatched": 45,
134+
"filesScanned": 45
135+
}
136+
}

0 commit comments

Comments
 (0)