Add paths option in local-plugins config file.

This commit is contained in:
Carl Meyer 2017-10-23 16:49:09 -07:00
parent 8acf55e0f8
commit 423980164b
6 changed files with 84 additions and 6 deletions

View file

@ -0,0 +1,16 @@
"""Module that is off sys.path by default, for testing local-plugin-paths."""
class ExtensionTestPlugin2(object):
"""Extension test plugin in its own directory."""
name = 'ExtensionTestPlugin2'
version = '1.0.0'
def __init__(self, tree):
"""Construct an instance of test plugin."""
pass
def run(self):
"""Do nothing."""
pass