pam-python 0.1.26__tar.gz → 0.1.27__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.
Files changed (38) hide show
  1. {pam_python-0.1.26 → pam_python-0.1.27}/PKG-INFO +1 -1
  2. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/service/service.test.tmpl +4 -1
  3. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/service/service_class.tmpl +5 -1
  4. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/PKG-INFO +1 -1
  5. {pam_python-0.1.26 → pam_python-0.1.27}/setup.py +1 -1
  6. {pam_python-0.1.26 → pam_python-0.1.27}/LICENSE.txt +0 -0
  7. {pam_python-0.1.26 → pam_python-0.1.27}/README.md +0 -0
  8. {pam_python-0.1.26 → pam_python-0.1.27}/pam/__init__.py +0 -0
  9. {pam_python-0.1.26 → pam_python-0.1.27}/pam/api.py +0 -0
  10. {pam_python-0.1.26 → pam_python-0.1.27}/pam/cli.py +0 -0
  11. {pam_python-0.1.26 → pam_python-0.1.27}/pam/interface_task_manager.py +0 -0
  12. {pam_python-0.1.26 → pam_python-0.1.27}/pam/models/__init__.py +0 -0
  13. {pam_python-0.1.26 → pam_python-0.1.27}/pam/models/request_command.py +0 -0
  14. {pam_python-0.1.26 → pam_python-0.1.27}/pam/server.py +0 -0
  15. {pam_python-0.1.26 → pam_python-0.1.27}/pam/service.py +0 -0
  16. {pam_python-0.1.26 → pam_python-0.1.27}/pam/sqlite.py +0 -0
  17. {pam_python-0.1.26 → pam_python-0.1.27}/pam/task_manager.py +0 -0
  18. {pam_python-0.1.26 → pam_python-0.1.27}/pam/temp_file_utils.py +0 -0
  19. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/buildcmd/pamb +0 -0
  20. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/buildcmd/pamb-base.sh +0 -0
  21. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/docker/Dockerfile +0 -0
  22. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/dockerignore.tmpl +0 -0
  23. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/gitignore.tmpl +0 -0
  24. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/main.tmpl +0 -0
  25. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/pylintrc.tmpl +0 -0
  26. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/run_unit_test.bat +0 -0
  27. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/run_unit_test.ps1 +0 -0
  28. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/init/run_unit_test.sh +0 -0
  29. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/service/functions.tmpl +0 -0
  30. {pam_python-0.1.26 → pam_python-0.1.27}/pam/templates/service/service.yaml +0 -0
  31. {pam_python-0.1.26 → pam_python-0.1.27}/pam/tester_task.py +0 -0
  32. {pam_python-0.1.26 → pam_python-0.1.27}/pam/utils.py +0 -0
  33. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/SOURCES.txt +0 -0
  34. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/dependency_links.txt +0 -0
  35. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/entry_points.txt +0 -0
  36. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/requires.txt +0 -0
  37. {pam_python-0.1.26 → pam_python-0.1.27}/pam_python.egg-info/top_level.txt +0 -0
  38. {pam_python-0.1.26 → pam_python-0.1.27}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pam-python
3
- Version: 0.1.26
3
+ Version: 0.1.27
4
4
  Summary: Pam Python Library
5
5
  Home-page: https://github.com/heart/pam-python
6
6
  Author: Narongrit Kanhanoi
@@ -111,4 +111,7 @@ class Test#CLASS_NAME#(unittest.TestCase):
111
111
  )
112
112
  service_instance = #CLASS_NAME#(self.testerTask, req)
113
113
  #---- Run Service ----
114
- self.testerTask.test_service(service_instance)
114
+ self.testerTask.test_service(service_instance)
115
+
116
+ while not service_instance.is_finished:
117
+ pass
@@ -11,6 +11,8 @@ class #CLASS_NAME#(Service):
11
11
  def __init__(self, task_manager, req):
12
12
  super().__init__(task_manager, req)
13
13
 
14
+ self.is_finished = False
15
+
14
16
  def on_start(self):
15
17
  log("on_start")
16
18
 
@@ -40,7 +42,9 @@ class #CLASS_NAME#(Service):
40
42
  report_df = create_report()
41
43
  report_name = "#CLASS_NAME#_report1"
42
44
  self._upload_report(report_name, report_df)
43
-
45
+
46
+ self.is_finished = True
47
+
44
48
  self._exit()
45
49
 
46
50
  def __process_data(self, input_files):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pam-python
3
- Version: 0.1.26
3
+ Version: 0.1.27
4
4
  Summary: Pam Python Library
5
5
  Home-page: https://github.com/heart/pam-python
6
6
  Author: Narongrit Kanhanoi
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pam-python",
5
- version="0.1.26",
5
+ version="0.1.27",
6
6
  author="Narongrit Kanhanoi",
7
7
  author_email="narongrit@pams.ai",
8
8
  description="Pam Python Library",
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