diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 17:52:43 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 10:44:56 +0000 |
commit | ce539abcc4962eb78aa5419b7cefd8554541c80e (patch) | |
tree | acf494d6830289a5ad2150047f69c60ed34b1742 | |
parent | c1f48f47bcdbb610d90eccb4b8616a0a39b11bf3 (diff) | |
download | buildstream-ce539abcc4962eb78aa5419b7cefd8554541c80e.tar.gz |
tests/integration: add __init__.py file to make it a packagebschubert/pylint-integration
tests/integration was lacking a __init__.py file, meaning it was not
recognized as a python package, and thus, pylint would not check
anything inside the directory.
Adding __init__.py ensures we have correct checks here.
-rw-r--r-- | tests/integration/__init__.py | 0 |
1 files changed, 0 insertions, 0 deletions
diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/tests/integration/__init__.py |