Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for streaming replication protocol #880

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ lint: .lint
fi

test: flake
pytest -q tests
pytest -q tests --no-flaky-report

vtest: flake
pytest tests
pytest tests --no-flaky-report

cov cover coverage: flake
py.test -svvv -rs --cov=aiopg --cov-report=html --cov-report=term tests
py.test -svvv -rs --cov=aiopg --cov-report=html --cov-report=term tests --no-flaky-report
@echo "open file://`pwd`/htmlcov/index.html"

cov-ci: flake
py.test -svvv -rs --cov=aiopg --cov-report=term tests --pg_tag all
py.test -svvv -rs --cov=aiopg --cov-report=term tests --pg_tag all --no-flaky-report

clean-pip:
pip freeze | grep -v "^-e" | xargs pip uninstall -y
Expand Down
2 changes: 2 additions & 0 deletions aiopg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
IsolationLevel,
ReadCommittedCompiler,
RepeatableReadCompiler,
ReplicationMessage,
SerializableCompiler,
Transaction,
connect,
Expand All @@ -34,6 +35,7 @@
"Connection",
"Cursor",
"Pool",
"ReplicationMessage",
"version",
"version_info",
"DEFAULT_TIMEOUT",
Expand Down
Loading