diff --git a/.github/workflows/pylint.yaml b/.github/workflows/pylint.yaml index cd2fce2..b24e101 100644 --- a/.github/workflows/pylint.yaml +++ b/.github/workflows/pylint.yaml @@ -28,6 +28,7 @@ jobs: echo "PATH=${PATH}" >> "${GITHUB_ENV}" python -m pip install --upgrade pip python -m pip install --requirement requirements.txt + python -m pip install --requirement test-requirements.txt python -m pip install psutil pylint pytest pytest_schema - name: Analysing the code with pylint diff --git a/examples/docs/using_abstract_factory.py b/examples/docs/using_abstract_factory.py index f7dda4f..5be6437 100644 --- a/examples/docs/using_abstract_factory.py +++ b/examples/docs/using_abstract_factory.py @@ -2,6 +2,7 @@ def perform_senzing_search(sz_abstract_factory: SzAbstractFactory, attributes: str) -> str: + """Example Senzing search.""" sz_engine = sz_abstract_factory.create_engine() flags = SzEngineFlags.SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS search_profile = "" diff --git a/examples/docs/using_sz_engine.py b/examples/docs/using_sz_engine.py index 7442129..36b436d 100644 --- a/examples/docs/using_sz_engine.py +++ b/examples/docs/using_sz_engine.py @@ -2,6 +2,7 @@ def perform_senzing_search(sz_engine: SzEngine, attributes: str) -> str: + """Example Senzing search.""" flags = SzEngineFlags.SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS search_profile = "" return sz_engine.search_by_attributes(attributes, flags, search_profile)