testgres 1.12.0__tar.gz → 1.12.1__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 (44) hide show
  1. {testgres-1.12.0/testgres.egg-info → testgres-1.12.1}/PKG-INFO +1 -1
  2. {testgres-1.12.0 → testgres-1.12.1}/setup.py +1 -1
  3. {testgres-1.12.0 → testgres-1.12.1}/src/node.py +1 -1
  4. {testgres-1.12.0 → testgres-1.12.1/testgres.egg-info}/PKG-INFO +1 -1
  5. {testgres-1.12.0 → testgres-1.12.1}/LICENSE +0 -0
  6. {testgres-1.12.0 → testgres-1.12.1}/MANIFEST.in +0 -0
  7. {testgres-1.12.0 → testgres-1.12.1}/README.md +0 -0
  8. {testgres-1.12.0 → testgres-1.12.1}/setup.cfg +0 -0
  9. {testgres-1.12.0 → testgres-1.12.1}/src/__init__.py +0 -0
  10. {testgres-1.12.0 → testgres-1.12.1}/src/api.py +0 -0
  11. {testgres-1.12.0 → testgres-1.12.1}/src/backup.py +0 -0
  12. {testgres-1.12.0 → testgres-1.12.1}/src/cache.py +0 -0
  13. {testgres-1.12.0 → testgres-1.12.1}/src/config.py +0 -0
  14. {testgres-1.12.0 → testgres-1.12.1}/src/connection.py +0 -0
  15. {testgres-1.12.0 → testgres-1.12.1}/src/consts.py +0 -0
  16. {testgres-1.12.0 → testgres-1.12.1}/src/decorators.py +0 -0
  17. {testgres-1.12.0 → testgres-1.12.1}/src/defaults.py +0 -0
  18. {testgres-1.12.0 → testgres-1.12.1}/src/enums.py +0 -0
  19. {testgres-1.12.0 → testgres-1.12.1}/src/exceptions.py +0 -0
  20. {testgres-1.12.0 → testgres-1.12.1}/src/impl/port_manager__generic.py +0 -0
  21. {testgres-1.12.0 → testgres-1.12.1}/src/impl/port_manager__this_host.py +0 -0
  22. {testgres-1.12.0 → testgres-1.12.1}/src/logger.py +0 -0
  23. {testgres-1.12.0 → testgres-1.12.1}/src/node_app.py +0 -0
  24. {testgres-1.12.0 → testgres-1.12.1}/src/port_manager.py +0 -0
  25. {testgres-1.12.0 → testgres-1.12.1}/src/pubsub.py +0 -0
  26. {testgres-1.12.0 → testgres-1.12.1}/src/standby.py +0 -0
  27. {testgres-1.12.0 → testgres-1.12.1}/src/utils.py +0 -0
  28. {testgres-1.12.0 → testgres-1.12.1}/testgres.egg-info/SOURCES.txt +0 -0
  29. {testgres-1.12.0 → testgres-1.12.1}/testgres.egg-info/dependency_links.txt +0 -0
  30. {testgres-1.12.0 → testgres-1.12.1}/testgres.egg-info/requires.txt +0 -0
  31. {testgres-1.12.0 → testgres-1.12.1}/testgres.egg-info/top_level.txt +0 -0
  32. {testgres-1.12.0 → testgres-1.12.1}/tests/__init__.py +0 -0
  33. {testgres-1.12.0 → testgres-1.12.1}/tests/conftest.py +0 -0
  34. {testgres-1.12.0 → testgres-1.12.1}/tests/helpers/__init__.py +0 -0
  35. {testgres-1.12.0 → testgres-1.12.1}/tests/helpers/global_data.py +0 -0
  36. {testgres-1.12.0 → testgres-1.12.1}/tests/helpers/run_conditions.py +0 -0
  37. {testgres-1.12.0 → testgres-1.12.1}/tests/test_config.py +0 -0
  38. {testgres-1.12.0 → testgres-1.12.1}/tests/test_os_ops_common.py +0 -0
  39. {testgres-1.12.0 → testgres-1.12.1}/tests/test_os_ops_local.py +0 -0
  40. {testgres-1.12.0 → testgres-1.12.1}/tests/test_os_ops_remote.py +0 -0
  41. {testgres-1.12.0 → testgres-1.12.1}/tests/test_testgres_common.py +0 -0
  42. {testgres-1.12.0 → testgres-1.12.1}/tests/test_testgres_local.py +0 -0
  43. {testgres-1.12.0 → testgres-1.12.1}/tests/test_testgres_remote.py +0 -0
  44. {testgres-1.12.0 → testgres-1.12.1}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres
3
- Version: 1.12.0
3
+ Version: 1.12.1
4
4
  Summary: Testing utility for PostgreSQL and its extensions
5
5
  Home-page: https://github.com/postgrespro/testgres
6
6
  Author: Postgres Professional
@@ -28,7 +28,7 @@ with open('README.md', 'r') as f:
28
28
  readme = f.read()
29
29
 
30
30
  setup(
31
- version='1.12.0',
31
+ version='1.12.1',
32
32
  name='testgres',
33
33
  packages=['testgres', 'testgres.impl'],
34
34
  package_dir={"testgres": "src"},
@@ -669,7 +669,7 @@ class PostgresNode(object):
669
669
 
670
670
  try:
671
671
  eprint('Force stopping node {0} with PID {1}'.format(self.name, node_pid))
672
- self.os_ops.kill(node_pid, signal.SIGKILL, expect_error=False)
672
+ self.os_ops.kill(node_pid, signal.SIGKILL)
673
673
  except Exception:
674
674
  # The node has already stopped
675
675
  pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres
3
- Version: 1.12.0
3
+ Version: 1.12.1
4
4
  Summary: Testing utility for PostgreSQL and its extensions
5
5
  Home-page: https://github.com/postgrespro/testgres
6
6
  Author: Postgres Professional
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