From 54728ea12fa35f9995a1614dba841712f44f6a51 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Thu, 12 Dec 2019 18:29:54 +0100 Subject: [PATCH] Added possibility to run tests using only unittest. --- tests/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..e926738 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +import unittest + +if __name__ == '__main__': + unittest.main()