Skip to content

Commit

Permalink
travis: Remove py3.5 testing
Browse files Browse the repository at this point in the history
The R1732 pylint error is not supported by 3.5 and it's not possible to
disable it by locally masking E0012.

Signed-off-by: Lukáš Doktor <[email protected]>
  • Loading branch information
ldoktor committed Jun 1, 2021
1 parent 4beff38 commit a4ca15c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ dist: xenial
language: python

python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
2 changes: 1 addition & 1 deletion aexpect/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def __init__(self, command=None, a_id=None, auto_close=False, echo=False,
# Start the server (which runs the command)
if command:
helper_cmd = utils_path.find_command('aexpect_helper')
self._aexpect_helper = subprocess.Popen([helper_cmd], # pylint: disable=R1732,E0012
self._aexpect_helper = subprocess.Popen([helper_cmd], # pylint: disable=R1732
shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
Expand Down

0 comments on commit a4ca15c

Please sign in to comment.