We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af5a2e commit 474b646Copy full SHA for 474b646
1 file changed
tests/test_deepcode.py
@@ -133,7 +133,9 @@ async def test_analysis():
133
assert len(results['results']['files'].keys()) == 5
134
assert '/sample-repo/AnnotatorTest.cpp' in list(results['results']['files'].keys())[0]
135
assert len(results['results']['suggestions'].keys()) == 8
136
-
+ assert list(results['results']['timing'].keys()) == ['fetchingCode', 'analysis', 'queue']
137
+ assert results['results']['timing']['fetchingCode'] <= results['results']['timing']['analysis']
138
+ assert results['results']['timing']['queue'] >= 0
139
140
@pytest.mark.asyncio
141
async def test_analyze_folders():
0 commit comments