add SPDX-License-Identifier and DCO information

this includes my personal signoff on the MAINTAINERS.md for DCO purposes

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
2023-12-18 11:14:13 -06:00
parent 0fef13c71a
commit e1dc2afc7b
18 changed files with 137 additions and 39 deletions

View File

@@ -1,4 +1,7 @@
"""Create the test app and other fixtures."""
"""Create the test app and other fixtures.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
import os
import pytest

View File

@@ -1,4 +1,7 @@
"""Test graphviz functionality."""
"""Test graphviz functionality.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
import os
from incorporealcms import create_app

View File

@@ -1,4 +1,7 @@
"""Test page requests."""
"""Test page requests.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
import re
from unittest.mock import patch

View File

@@ -1,4 +1,7 @@
"""Configure the test application."""
"""Configure the test application.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
LOGGING = {
'version': 1,

View File

@@ -1,4 +1,7 @@
"""Test basic configuration stuff."""
"""Test basic configuration stuff.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
import os
from incorporealcms import create_app

View File

@@ -1,4 +1,7 @@
"""Unit test helper methods."""
"""Unit test helper methods.
SPDX-License-Identifier: AGPL-3.0-or-later
"""
import os
import pytest