Created testsuitedata statistics
1 unresolved thread
1 unresolved thread
added a script for statistics. Re-enabled try/catch
Merge request reports
Activity
Filter activity
changed milestone to %T2 - Improve current Test Suite and testing environment
added autoparse-robot label
requested review from @lopezaguilar
assigned to @tropea
added 11 commits
-
caf82b03...4b4a1572 - 10 commits from branch
testsuitedata
- 5bb3dd02 - align my branch "tessuitedata-statistics" with "testsuitedata"
-
caf82b03...4b4a1572 - 10 commits from branch
added 1 commit
- e7dffdc4 - output testcases.json in handlebars friendly format
added 5 commits
-
e7dffdc4...0d2393f4 - 4 commits from branch
testsuitedata
- a0a173f4 - Merge remote-tracking branch 'origin/testsuitedata' into testsuitedata-statistics
-
e7dffdc4...0d2393f4 - 4 commits from branch
- doc/statisticsDocumentationData.py 0 → 100644
4 from json import dump 5 6 if __name__ == "__main__": 7 basedir = dirname(dirname(__file__)) 8 statistics = dict() 9 testcases = [] 10 number_of_failures = 0 11 number_of_all_testcases = 0 12 number_of_successes = 0 13 14 fullpath = basedir+"/TP/NGSI-LD" 15 for root, dirs, files in walk(fullpath): 16 for filename in files: 17 if filename.endswith(".robot"): 18 number_of_all_testcases += 1 19 name_of_test_case = filename[:-6] changed this line in version 7 of the diff
mentioned in commit 54dc5348