chg: make it possible to run the tests manually.

pull/257/head
Raphaël Vinot 2018-08-12 22:46:21 +02:00
parent d557bf0823
commit 9669d892c5
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import unittest

View File

@ -314,3 +314,7 @@ class TestComprehensive(unittest.TestCase):
self.assertEqual(response, [])
# Delete event
self.admin_misp_connector.delete_event(c_me.id)
if __name__ == '__main__':
unittest.main()