Skip to content

Commit a6445f1

Browse files
committed
Remove no-longer-necessary test that is creating a problem.
1 parent e4afe20 commit a6445f1

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

tests/test_aws_lambda.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ class TestPythonLambdaUnit():
3434

3535
pytestmark = [pytest.mark.unit]
3636

37-
def test_get_version(self):
38-
""" Because coverage, thats why! """
39-
from aws_lambda._version import __version__
40-
assert len(__version__.split('.')) == 3 # should be x.x.x
37+
# No more _version.py file, so no more version to check.
38+
# Anyone who wants the version can get it from pkg_resources a different way. -kmp 12-Mar-2020
39+
#
40+
# def test_get_version(self):
41+
# """ Because coverage, thats why! """
42+
# from aws_lambda._version import __version__
43+
# assert len(__version__.split('.')) == 3 # should be x.x.x
4144

4245
def test_get_role_name(self):
4346
""" Basic test that validates our role_name format """

0 commit comments

Comments
 (0)