summaryrefslogtreecommitdiff
path: root/buildscripts/tests/test_aws_ec2.py
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2018-03-27 14:30:46 -0400
committerJonathan Abrahams <jonathan@mongodb.com>2018-04-05 14:41:58 -0400
commitc50c68fef179d9306f1a3432f48985bf20555e38 (patch)
treea1c208329a090c54a8a1f02558b2be87b830a8ab /buildscripts/tests/test_aws_ec2.py
parenta5dacf7092f51055dd774a1911a48815bb9a1e0e (diff)
downloadmongo-c50c68fef179d9306f1a3432f48985bf20555e38.tar.gz
SERVER-23312 Python linting - Lint using pylint, pydocstyle & mypy
Diffstat (limited to 'buildscripts/tests/test_aws_ec2.py')
-rwxr-xr-xbuildscripts/tests/test_aws_ec2.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/tests/test_aws_ec2.py b/buildscripts/tests/test_aws_ec2.py
index c289a662821..3401ae569c8 100755
--- a/buildscripts/tests/test_aws_ec2.py
+++ b/buildscripts/tests/test_aws_ec2.py
@@ -7,11 +7,13 @@ import unittest
from buildscripts import aws_ec2
+# pylint: disable=invalid-name,missing-docstring,protected-access
+
_AMI = "ami-ed6bec86"
_INSTANCE_TYPE = "t1.micro"
-class AwsEc2TestCase(unittest.TestCase):
+class AwsEc2TestCase(unittest.TestCase): # pylint: disable=too-many-instance-attributes
def setUp(self):
self.aws_ec2 = aws_ec2.AwsEc2()
self.launched_instances = []