diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-19 18:05:05 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 09:38:42 +0000 |
commit | a90daa6a123d74a938a646e2fccaf4bfe6a5b950 (patch) | |
tree | 0137bfa22aba8ebbd15eafd1c41778f63f3933fe /tests/examples/flatpak-autotools.py | |
parent | 7ce5dcfc813bc3bc94125429a7c44e24d2147c36 (diff) | |
download | buildstream-a90daa6a123d74a938a646e2fccaf4bfe6a5b950.tar.gz |
tests:lint: silence redefined-outer-name in files using fixtures
Pylint doesn't play well with pytest fixtures, we therefore need to
silence this error.
Diffstat (limited to 'tests/examples/flatpak-autotools.py')
-rw-r--r-- | tests/examples/flatpak-autotools.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/examples/flatpak-autotools.py b/tests/examples/flatpak-autotools.py index 44b0ef93d..d08808886 100644 --- a/tests/examples/flatpak-autotools.py +++ b/tests/examples/flatpak-autotools.py @@ -1,3 +1,6 @@ +# Pylint doesn't play well with fixtures and dependency injection from pytest +# pylint: disable=redefined-outer-name + import os import pytest |