Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite43c931

Browse files
author
d.kovalenko
committed
Initial import
1 parent7458364 commite43c931

File tree

7 files changed

+61
-0
lines changed

7 files changed

+61
-0
lines changed

‎.gitignore‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.pyc
2+
*.egg
3+
*.egg-info/
4+
.eggs/
5+
.pytest_cache/
6+
.vscode/
7+
__pycache__/
8+
env/
9+
venv/

‎.style.yapf‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[style]
2+
based_on_style = pep8
3+
spaces_before_comment = 4
4+
split_before_logical_operator = false
5+
column_limit=80

‎README.md‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#testgres - common
2+
3+
Common code of testgres.
4+
5+
##Authors
6+
7+
[Postgres Professional](https://postgrespro.ru/about)

‎init_test_env.sh‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export PG_BIN='/home/dima/MY/Work/CurrentTasks/2025/PROBACKUP3/2025_03_25/Servers/n001c/debug/ent-17/install/bin'
2+
export PG_CONFIG=${PG_BIN}/pg_config
3+
export PGPROBACKUPBIN="/home/dima/MY/GitLab2/pg_probackup2/ee_2_8/work01/pg_probackup"
4+
export PATH=${PATH}:${PG_BIN}
5+

‎run_vscode.sh‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source ./init_test_env.sh
2+
3+
code.
4+

‎setup.py‎

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
try:
2+
fromsetuptoolsimportsetup
3+
exceptImportError:
4+
fromdistutils.coreimportsetup
5+
6+
setup(
7+
version="0.0.1",
8+
name="testgres.common",
9+
packages=[
10+
"testgres.common",
11+
],
12+
package_dir={"testgres.common":"src"},
13+
description='Testgres common code',
14+
url='https://github.com/postgrespro/testgres.common',
15+
long_description_content_type='text/markdown',
16+
license='PostgreSQL',
17+
author='Postgres Professional',
18+
author_email='testgres@postgrespro.ru',
19+
keywords=['testgres'],
20+
)
21+

‎src/exceptions.py‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# coding: utf-8
2+
3+
4+
classTestgresException(Exception):
5+
pass
6+
7+
8+
classInvalidOperationException(TestgresException):
9+
pass
10+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp