We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4afe20 commit a6445f1Copy full SHA for a6445f1
1 file changed
tests/test_aws_lambda.py
@@ -34,10 +34,13 @@ class TestPythonLambdaUnit():
34
35
pytestmark = [pytest.mark.unit]
36
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
+ # No more _version.py file, so no more version to check.
+ # Anyone who wants the version can get it from pkg_resources a different way. -kmp 12-Mar-2020
+ #
+ # 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
44
45
def test_get_role_name(self):
46
""" Basic test that validates our role_name format """
0 commit comments