summaryrefslogtreecommitdiff
path: root/tests/plugins/bst2/elements/malformed.py
blob: d3fe97a6a32db8ea3f205eaa8b641e11282f6b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from buildstream import Element


class Found(Element):
    BST_MIN_VERSION = 5

    def configure(self, node):
        pass

    def preflight(self):
        pass

    def get_unique_key(self):
        return {}


# Plugin entry point
def setup():
    return Found