From d5653fc91088fa0a10fe67a191d9d972224c76f4 Mon Sep 17 00:00:00 2001 From: Greg Albrecht <gba@onbeep.com> Date: Mon, 16 Sep 2013 17:46:22 -0700 Subject: [PATCH] updating test module name --- setup.py | 1 + tests/test_kiss_util.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0efab86..58c1272 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ except ImportError: def publish(): + """Function for publishing package to pypi.""" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() diff --git a/tests/test_kiss_util.py b/tests/test_kiss_util.py index 2c63726..05564a7 100644 --- a/tests/test_kiss_util.py +++ b/tests/test_kiss_util.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -"""Tests for KISS Module.""" +"""Tests for KISS Util Module.""" __author__ = 'Greg Albrecht W2GMD <gba@onbeep.com>' __copyright__ = 'Copyright 2013 OnBeep, Inc.' @@ -16,7 +16,7 @@ from . import constants # pylint: disable=R0904,C0103 -class KISSTestCase(unittest.TestCase): +class KISSUtilTestCase(unittest.TestCase): """Test class for KISS Python Module.""" -- GitLab