* Updated imports for Netbox 3.6.1 Closes #21 and #23 * Changed Fieldtypes of Start and Expiration Date Closes #22 * Bump to NetBox v3.6.1 * Add pyproject.toml and python workflow --------- Co-authored-by: Manuel Hartung <manuel.hartung@atos.net>
12 lines
325 B
Python
12 lines
325 B
Python
PLUGINS = ['netbox_slm']
|
|
DEBUG = True
|
|
SECRET_KEY = 'dummydummydummydummydummydummydummydummydummydummy'
|
|
DEVELOPER = True
|
|
PLUGINS_CONFIG = {
|
|
'netbox_slm': dict(
|
|
TEST_RUNNER='xmlrunner.extra.djangotestrunner.XMLTestRunner',
|
|
TEST_OUTPUT_DIR='/ci/reports/',
|
|
TEST_OUTPUT_FILE_NAME='junit.xml',
|
|
)
|
|
}
|