Ensure pylint runs in some tests paths
Description
We used to lack a __init__.py
file in various tests directories, which meant
pylint would not run
Changes proposed in this merge request:
- Adding a
__init__.py
file intests/plugins
- Adding a
__init__.py
file intests/remoteexecution
- Adding a
__init__.py
file intests/sandboxes
- Fixing all pylint errors there
Disabling the redefined-outer-name
must be done per file, as Pylint doesn't support per directory configuration.
See https://github.com/PyCQA/pylint/issues/618 for the upstream issue
Edited by Benjamin Schubert