Skip to content

Commit 81b8a5b

Browse files
author
vshepard
committed
Move plugin to package testgres_pg_probackup2
1 parent 40aa655 commit 81b8a5b

File tree

11 files changed

+14
-12
lines changed

11 files changed

+14
-12
lines changed

testgres/plugins/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from pg_probackup2.gdb import GDBobj
2-
from pg_probackup2.app import ProbackupApp, ProbackupException
3-
from pg_probackup2.init_helpers import init_params
4-
from pg_probackup2.storage.fs_backup import FSTestBackupDir
1+
from testgres_pg_probackup2.gdb import GDBobj
2+
from testgres_pg_probackup2.app import ProbackupApp, ProbackupException
3+
from testgres_pg_probackup2.init_helpers import init_params
4+
from testgres_pg_probackup2.storage.fs_backup import FSTestBackupDir
55

66
__all__ = [
77
"ProbackupApp", "ProbackupException", "init_params", "FSTestBackupDir", "GDBobj"

testgres/plugins/pg_probackup2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ python my_tests.py
3535

3636
### Examples
3737

38-
Here is an example of what you can do with `testgres-pg_probackup2`:
38+
Here is an example of what you can do with `testgres_pg_probackup2`:
3939

4040
```python
4141
# You can see full script here plugins/pg_probackup2/pg_probackup2/tests/basic_test.py

testgres/plugins/pg_probackup2/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
from distutils.core import setup
55

66
setup(
7-
version='0.0.1',
7+
version='0.0.2',
88
name='testgres_pg_probackup2',
9-
packages=['pg_probackup2', 'pg_probackup2.storage'],
9+
packages=['testgres_pg_probackup2', 'testgres_pg_probackup2.storage'],
1010
description='Plugin for testgres that manages pg_probackup2',
1111
url='https://github.com/postgrespro/testgres',
1212
long_description_content_type='text/markdown',
1313
license='PostgreSQL',
1414
author='Postgres Professional',
1515
author_email='testgres@postgrespro.ru',
1616
keywords=['pg_probackup', 'testing', 'testgres'],
17-
install_requires=['testgres>=1.9.2']
17+
install_requires=['testgres>=1.9.3']
1818
)

testgres/plugins/pg_probackup2/testgres_pg_probackup2/storage/s3_backup.py

Whitespace-only changes.

0 commit comments

Comments
 (0)