This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
discards a98b7be3a884986cb8060f80f15c4e4809476325 (commit)
discards dc75365a4999c1d4112240617a2c93b67fd7a5e8 (commit)
discards f0750f5a357df1c1c8f024a13abb48a1dcdde611 (commit)
discards db02d0281af3a60c095a7e2205d645b92c54c554 (commit)
via 93864e0f548ef3a70e0d5640bcaa74718aa52bec (commit)
via 3dc10840dbf50bee098ec9cc006fb41380ed45cb (commit)
via 06901b4af66de626daaa8ae35bc370bf3d787f50 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (a98b7be3a884986cb8060f80f15c4e4809476325)
\
N -- N -- N (93864e0f548ef3a70e0d5640bcaa74718aa52bec)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/93864e0f548ef3a70e0d5640bcaa74718aa52bec
commit 93864e0f548ef3a70e0d5640bcaa74718aa52bec
Author: Oleg Broytman <ph...@ph...>
Date: Sat Feb 24 22:20:24 2024 +0300
CI: Skip tests with `pg8000`
diff --git a/docs/News.rst b/docs/News.rst
index d65b6e5..1060920 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -13,6 +13,8 @@ CI
* Run tests with ``PyGreSQL`` on w32, do not ignore errors.
+* Skip tests with ``pg8000`` on w32.
+
SQLObject 3.11.0
================
diff --git a/tox.ini b/tox.ini
index c660a75..4d1b619 100644
--- a/tox.ini
+++ b/tox.ini
@@ -554,7 +554,7 @@ commands =
easy_install -i https://downloads.egenix.com/python/index/ucs2/ egenix-mx-base
{[pg8000-w32]commands}
-[testenv:py3{4,5,6,7,8,9,10,11,12}-postgres-pg8000-w32]
+[testenv:py3{4,5,6,7,8,9,10,11,12}-postgres-pg8000-noauto-w32]
platform = win32
commands = {[pg8000-w32]commands}
http://sourceforge.net/p/sqlobject/sqlobject/ci/3dc10840dbf50bee098ec9cc006fb41380ed45cb
commit 3dc10840dbf50bee098ec9cc006fb41380ed45cb
Author: Oleg Broytman <ph...@ph...>
Date: Sat Feb 24 21:48:12 2024 +0300
CI: Run tests with `PyGreSQL`
diff --git a/docs/News.rst b/docs/News.rst
index 270a44a..d65b6e5 100644
--- a/docs/News.rst
+++ b/docs/News.rst
@@ -8,6 +8,11 @@ News
SQLObject (master)
==================
+CI
+--
+
+* Run tests with ``PyGreSQL`` on w32, do not ignore errors.
+
SQLObject 3.11.0
================
diff --git a/tox.ini b/tox.ini
index caa5945..c660a75 100644
--- a/tox.ini
+++ b/tox.ini
@@ -508,10 +508,10 @@ commands =
{[testenv]commands}
-dropdb --username=runner --no-password sqlobject_test
createdb --username=runner --no-password sqlobject_test
- -pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
+ pytest -D "postgres://runner:test@localhost/sqlobject_test?driver=pygresql&charset=utf-8&debug=1"
dropdb --username=runner --no-password sqlobject_test
-[testenv:py27-postgres-pygresql-noauto-w32]
+[testenv:py27-postgres-pygresql-w32]
platform = win32
commands =
easy_install -i https://downloads.egenix.com/python/index/ucs2/ egenix-mx-base
http://sourceforge.net/p/sqlobject/sqlobject/ci/06901b4af66de626daaa8ae35bc370bf3d787f50
commit 06901b4af66de626daaa8ae35bc370bf3d787f50
Author: Oleg Broytman <ph...@ph...>
Date: Tue Jan 23 11:37:53 2024 +0300
Build(git): Simplify regular expressions for `compileall`
[skip ci]
diff --git a/devscripts/git-hooks/post-checkout b/devscripts/git-hooks/post-checkout
index 40f7bd7..c615fc8 100755
--- a/devscripts/git-hooks/post-checkout
+++ b/devscripts/git-hooks/post-checkout
@@ -16,7 +16,7 @@ if [ "$new_branch" = 1 ]; then
rm -rf docs/_build/html docs/html
fi &&
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
diff --git a/devscripts/git-hooks/post-merge b/devscripts/git-hooks/post-merge
index 633a1d0..2df0670 100755
--- a/devscripts/git-hooks/post-merge
+++ b/devscripts/git-hooks/post-merge
@@ -2,7 +2,7 @@
# post-merge hook that compiles python files to byte code
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
diff --git a/devscripts/git-hooks/post-rewrite b/devscripts/git-hooks/post-rewrite
index df28442..59efb3d 100755
--- a/devscripts/git-hooks/post-rewrite
+++ b/devscripts/git-hooks/post-rewrite
@@ -2,7 +2,7 @@
# post-rewrite hook that compiles python files to byte code
-python -m compileall -q -x '\.tox/.+' . &&
-python -O -m compileall -q -x '\.tox/.+' .
+python -m compileall -q -x '\.tox/' . &&
+python -O -m compileall -q -x '\.tox/' .
exit 0
-----------------------------------------------------------------------
Summary of changes:
docs/News.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
SQLObject development repository
|