From 89bf5a3cab93143883ab400847780e3f81eb5252 Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 11 Apr 2023 16:30:33 +0200 Subject: [PATCH] Test: cleanup --- tests/test_pep.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 tests/test_pep.py diff --git a/tests/test_pep.py b/tests/test_pep.py deleted file mode 100755 index 75a5222..0000000 --- a/tests/test_pep.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is under GNU Affero General Public License 3.0 -# see LICENSE.txt - -"""Unit test for pEp package, not for subpackages or modules.""" - - - -def test_pep_version(): - """ Test that __version__ is not None or empty and is not 0.0.0.""" - from pEp import __version__ - # We could also test that match the regex, but that is already a test in - # setuptools_scm itself. - assert __version__ - assert __version__ != "0.0.0"