We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace53f7 commit 35bb42cCopy full SHA for 35bb42c
setup.py
@@ -1,6 +1,5 @@
1
"""DataParserLib Install Script"""
2
# coding=utf-8
3
-
4
import json
5
from setuptools import setup, find_packages
6
tests/test_dict_parse.py
@@ -25,3 +25,6 @@ def test_flatten_dictionary_parser(self):
25
flat_project_data = flatten_dictionary(self.dictionary_data)
26
self.assertEqual(flat_project_data["report"]["testinfo.project_name"], "test")
27
28
+
29
+if __name__ == '__main__':
30
+ unittest.main(verbosity=2)
0 commit comments