pam-python 0.1.13__tar.gz → 0.1.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pam_python-0.1.13 → pam_python-0.1.15}/PKG-INFO +1 -1
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/init/pylintrc.tmpl +1 -1
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/service/service.test.tmpl +2 -2
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/service/service_class.tmpl +1 -1
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/PKG-INFO +1 -1
- {pam_python-0.1.13 → pam_python-0.1.15}/setup.py +1 -1
- {pam_python-0.1.13 → pam_python-0.1.15}/LICENSE.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/README.md +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/__init__.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/api.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/cli.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/interface_task_manager.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/models/__init__.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/models/request_command.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/server.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/service.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/task_manager.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/temp_file_utils.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/buildcmd/pamb +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/buildcmd/pamb-base.sh +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/docker/Dockerfile +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/init/dockerignore.tmpl +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/init/gitignore.tmpl +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/init/main.tmpl +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/init/run_test.sh +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/service/functions.tmpl +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/templates/service/service.yaml +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/tester_task.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam/utils.py +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/SOURCES.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/dependency_links.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/entry_points.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/requires.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/pam_python.egg-info/top_level.txt +0 -0
- {pam_python-0.1.13 → pam_python-0.1.15}/setup.cfg +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
[MESSAGES CONTROL]
|
|
2
|
-
disable=missing-function-docstring,missing-class-docstring,missing-module-docstring,trailing-whitespace,line-too-long,missing-final-newline,broad-exception-caught
|
|
2
|
+
disable=missing-function-docstring,missing-class-docstring,missing-module-docstring,trailing-whitespace,line-too-long,missing-final-newline,broad-exception-caught,invalid-name
|
|
@@ -9,7 +9,7 @@ from pam.tester_task import TesterTask
|
|
|
9
9
|
from pam.models.request_command import RequestCommand
|
|
10
10
|
from pam.temp_file_utils import TempfileUtils
|
|
11
11
|
#pylint: disable=import-error
|
|
12
|
-
from
|
|
12
|
+
from .#CLASS_NAME# import #CLASS_NAME#
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
# ==================== GLOBAL VARIABLES ====================
|
|
@@ -67,7 +67,7 @@ def createMockDir(mockDir):
|
|
|
67
67
|
|
|
68
68
|
# ======================================================================
|
|
69
69
|
|
|
70
|
-
class
|
|
70
|
+
class Test#CLASS_NAME#(unittest.TestCase):
|
|
71
71
|
|
|
72
72
|
def setUp(self):
|
|
73
73
|
createMockDir(MOCK_DIR)
|
|
@@ -4,7 +4,7 @@ from pam.utils import log
|
|
|
4
4
|
#pylint: disable=import-error
|
|
5
5
|
from .functions import create_report, load_csv_file
|
|
6
6
|
|
|
7
|
-
class #CLASS_NAME#
|
|
7
|
+
class #CLASS_NAME#(Service):
|
|
8
8
|
|
|
9
9
|
#pylint: disable=useless-parent-delegation
|
|
10
10
|
def __init__(self, task_manager, req):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|