Skip to content

Commit

Permalink
Disable pylint warnings on AppVeyor related to pytest plugin subclasses
Browse files Browse the repository at this point in the history
> stbt_rig.py:1231:4: [W0223(abstract-method), StbtCollector] Method
> 'get_closest_marker' is abstract in class 'Node' but is not overridden
>
> stbt_rig.py:1231:4: [W0223(abstract-method), StbtCollector] Method
> 'gethookproxy' is abstract in class 'FSCollector' but is not overridden
>
> stbt_rig.py:1231:4: [W0223(abstract-method), StbtCollector] Method
> 'isinitpath' is abstract in class 'FSCollector' but is not overridden
>
> stbt_rig.py:1241:4: [W0223(abstract-method), StbtRemoteTest] Method
> 'get_closest_marker' is abstract in class 'Node' but is not overridden
  • Loading branch information
drothlis committed Sep 7, 2020
1 parent 157bf61 commit b32be72
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions stbt_rig.py
Expand Up @@ -1208,6 +1208,7 @@ class RetryTimeout(requests.exceptions.Timeout):


try:
# pylint:disable=abstract-method
import pytest

def pytest_addoption(parser):
Expand Down

0 comments on commit b32be72

Please sign in to comment.