testgres 1.13.0__tar.gz → 1.13.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 (40) hide show
  1. {testgres-1.13.0/testgres.egg-info → testgres-1.13.1}/PKG-INFO +1 -1
  2. {testgres-1.13.0 → testgres-1.13.1}/pyproject.toml +1 -1
  3. {testgres-1.13.0 → testgres-1.13.1}/src/node.py +1 -1
  4. {testgres-1.13.0 → testgres-1.13.1/testgres.egg-info}/PKG-INFO +1 -1
  5. {testgres-1.13.0 → testgres-1.13.1}/LICENSE +0 -0
  6. {testgres-1.13.0 → testgres-1.13.1}/README.md +0 -0
  7. {testgres-1.13.0 → testgres-1.13.1}/setup.cfg +0 -0
  8. {testgres-1.13.0 → testgres-1.13.1}/src/__init__.py +0 -0
  9. {testgres-1.13.0 → testgres-1.13.1}/src/api.py +0 -0
  10. {testgres-1.13.0 → testgres-1.13.1}/src/backup.py +0 -0
  11. {testgres-1.13.0 → testgres-1.13.1}/src/cache.py +0 -0
  12. {testgres-1.13.0 → testgres-1.13.1}/src/config.py +0 -0
  13. {testgres-1.13.0 → testgres-1.13.1}/src/connection.py +0 -0
  14. {testgres-1.13.0 → testgres-1.13.1}/src/consts.py +0 -0
  15. {testgres-1.13.0 → testgres-1.13.1}/src/decorators.py +0 -0
  16. {testgres-1.13.0 → testgres-1.13.1}/src/defaults.py +0 -0
  17. {testgres-1.13.0 → testgres-1.13.1}/src/enums.py +0 -0
  18. {testgres-1.13.0 → testgres-1.13.1}/src/exceptions.py +0 -0
  19. {testgres-1.13.0 → testgres-1.13.1}/src/impl/port_manager__generic.py +0 -0
  20. {testgres-1.13.0 → testgres-1.13.1}/src/impl/port_manager__this_host.py +0 -0
  21. {testgres-1.13.0 → testgres-1.13.1}/src/logger.py +0 -0
  22. {testgres-1.13.0 → testgres-1.13.1}/src/node_app.py +0 -0
  23. {testgres-1.13.0 → testgres-1.13.1}/src/port_manager.py +0 -0
  24. {testgres-1.13.0 → testgres-1.13.1}/src/pubsub.py +0 -0
  25. {testgres-1.13.0 → testgres-1.13.1}/src/raise_error.py +0 -0
  26. {testgres-1.13.0 → testgres-1.13.1}/src/standby.py +0 -0
  27. {testgres-1.13.0 → testgres-1.13.1}/src/utils.py +0 -0
  28. {testgres-1.13.0 → testgres-1.13.1}/testgres.egg-info/SOURCES.txt +0 -0
  29. {testgres-1.13.0 → testgres-1.13.1}/testgres.egg-info/dependency_links.txt +0 -0
  30. {testgres-1.13.0 → testgres-1.13.1}/testgres.egg-info/requires.txt +0 -0
  31. {testgres-1.13.0 → testgres-1.13.1}/testgres.egg-info/top_level.txt +0 -0
  32. {testgres-1.13.0 → testgres-1.13.1}/tests/test_config.py +0 -0
  33. {testgres-1.13.0 → testgres-1.13.1}/tests/test_os_ops_common.py +0 -0
  34. {testgres-1.13.0 → testgres-1.13.1}/tests/test_os_ops_local.py +0 -0
  35. {testgres-1.13.0 → testgres-1.13.1}/tests/test_os_ops_remote.py +0 -0
  36. {testgres-1.13.0 → testgres-1.13.1}/tests/test_raise_error.py +0 -0
  37. {testgres-1.13.0 → testgres-1.13.1}/tests/test_testgres_common.py +0 -0
  38. {testgres-1.13.0 → testgres-1.13.1}/tests/test_testgres_local.py +0 -0
  39. {testgres-1.13.0 → testgres-1.13.1}/tests/test_testgres_remote.py +0 -0
  40. {testgres-1.13.0 → testgres-1.13.1}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres
3
- Version: 1.13.0
3
+ Version: 1.13.1
4
4
  Summary: Testing utility for PostgreSQL and its extensions
5
5
  Author-email: Postgres Professional <testgres@postgrespro.ru>
6
6
  License: PostgreSQL
@@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]
11
11
 
12
12
  [project]
13
13
  name = "testgres"
14
- version = "1.13.0"
14
+ version = "1.13.1"
15
15
 
16
16
  description = "Testing utility for PostgreSQL and its extensions"
17
17
  readme = "README.md"
@@ -1016,7 +1016,7 @@ class PostgresNode(object):
1016
1016
  Returns:
1017
1017
  This instance of :class:`.PostgresNode`.
1018
1018
  """
1019
- self.start2()
1019
+ self.start2(params, wait, exec_env)
1020
1020
 
1021
1021
  if not wait:
1022
1022
  # Postmaster process is starting in background
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testgres
3
- Version: 1.13.0
3
+ Version: 1.13.1
4
4
  Summary: Testing utility for PostgreSQL and its extensions
5
5
  Author-email: Postgres Professional <testgres@postgrespro.ru>
6
6
  License: PostgreSQL
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