mirror of https://github.com/MISP/PyMISP
chg: make it possible to run the tests manually.
parent
d557bf0823
commit
9669d892c5
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
|
|
@ -314,3 +314,7 @@ class TestComprehensive(unittest.TestCase):
|
||||||
self.assertEqual(response, [])
|
self.assertEqual(response, [])
|
||||||
# Delete event
|
# Delete event
|
||||||
self.admin_misp_connector.delete_event(c_me.id)
|
self.admin_misp_connector.delete_event(c_me.id)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
||||||
|
|
Loading…
Reference in New Issue