File tree Expand file tree Collapse file tree 7 files changed +61
-0
lines changed Expand file tree Collapse file tree 7 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 1+ * .pyc
2+ * .egg
3+ * .egg-info /
4+ .eggs /
5+ .pytest_cache /
6+ .vscode /
7+ __pycache__ /
8+ env /
9+ venv /
Original file line number Diff line number Diff line change 1+ [style]
2+ based_on_style = pep8
3+ spaces_before_comment = 4
4+ split_before_logical_operator = false
5+ column_limit=80
Original file line number Diff line number Diff line change 1+ # testgres - common
2+
3+ Common code of testgres.
4+
5+ ## Authors
6+
7+ [ Postgres Professional] ( https://postgrespro.ru/about )
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 1+ source ./init_test_env.sh
2+
3+ code .
4+
Original file line number Diff line number Diff line change 1+ try :
2+ from setuptools import setup
3+ except ImportError :
4+ from distutils .core import setup
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+
Original file line number Diff line number Diff line change 1+ # coding: utf-8
2+
3+
4+ class TestgresException (Exception ):
5+ pass
6+
7+
8+ class InvalidOperationException (TestgresException ):
9+ pass
10+
You can’t perform that action at this time.
0 commit comments