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
via eb00dff007fb8e16d4ebebae6860f305ae4cf54b (commit)
via 0266ac96332b82b768afd8344f8a6a2ea8fe1ef2 (commit)
via 7b0bab102f7c80333ade797341846c177020adb7 (commit)
from 04f9060c15c0ca1fcf0d82ce03d10e458958ed11 (commit)
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/eb00dff007fb8e16d4ebebae6860f305ae4cf54b
commit eb00dff007fb8e16d4ebebae6860f305ae4cf54b
Author: Oleg Broytman <ph...@ph...>
Date: Wed May 6 23:22:39 2020 +0300
CI: pip<21 for Python 2.7
diff --git a/.travis.yml b/.travis.yml
index 1e4feb5..e176035 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -94,7 +94,7 @@ before_install:
sudo chmod 644 /var/lib/firebird/create_test_db;
fi
-install: travis_retry pip install --upgrade "pip<19.1" "setuptools<44" tox coveralls codecov ppu
+install: travis_retry pip install --upgrade "pip<21" "setuptools<44" tox coveralls codecov ppu
script: devscripts/tox-select-envs $TESTS
diff --git a/appveyor.yml b/appveyor.yml
index 778e9f5..e5f00a6 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -91,7 +91,7 @@ install:
- "SET TOXPYTHON=%PYTHON_HOME%\\python.exe"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- - "python -m pip install --upgrade \"pip<19.1\" \"setuptools<44\""
+ - "python -m pip install --upgrade \"pip<21\" \"setuptools<44\""
- "pip install --upgrade \"tox<3.1\" ppu"
- "pip --version"
# List ODBC drivers
http://sourceforge.net/p/sqlobject/sqlobject/ci/0266ac96332b82b768afd8344f8a6a2ea8fe1ef2
commit 0266ac96332b82b768afd8344f8a6a2ea8fe1ef2
Author: Oleg Broytman <ph...@ph...>
Date: Mon May 4 21:38:06 2020 +0300
Tests: Add `test-sqlobject.cmd`
diff --git a/devscripts/test-sqlobject.cmd b/devscripts/test-sqlobject.cmd
new file mode 100644
index 0000000..53b7cab
--- /dev/null
+++ b/devscripts/test-sqlobject.cmd
@@ -0,0 +1,16 @@
+@echo off
+
+SetLocal EnableDelayedExpansion
+set SavePATH=%PATH%
+
+for %%V in (27 34 35 36 37 38) do (
+ for %%s in (32 64) do (
+ set PATH=C:\Python%%V-%%s;C:\Python%%V-%%s\Scripts;!SavePATH!
+ set TOXPYTHON=C:\Python%%V-%%s\python.exe
+ !TOXPYTHON! -m tox -e "py%%V-sqlite{-memory,}-w32"
+ if !ERRORLEVEL! EQU 0 (echo Ok) else (echo Error && goto Quit)
+ )
+)
+
+:Quit
+set PATH=%SavePATH%
http://sourceforge.net/p/sqlobject/sqlobject/ci/7b0bab102f7c80333ade797341846c177020adb7
commit 7b0bab102f7c80333ade797341846c177020adb7
Author: Oleg Broytman <ph...@ph...>
Date: Mon May 4 21:36:48 2020 +0300
Tests(tox): Delete SQLite database under w32
diff --git a/tox.ini b/tox.ini
index 41619f2..7de2551 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1021,6 +1021,7 @@ platform = win32
commands =
{[testenv]commands}
pytest --cov=sqlobject -D sqlite:/C:/projects/sqlobject/sqlobject_test.sqdb?debug=1
+ cmd /c "del C:\projects\sqlobject\sqlobject_test.sqdb"
[testenv:py27-sqlite-w32]
platform = win32
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 2 +-
appveyor.yml | 2 +-
devscripts/test-sqlobject.cmd | 16 ++++++++++++++++
tox.ini | 1 +
4 files changed, 19 insertions(+), 2 deletions(-)
create mode 100644 devscripts/test-sqlobject.cmd
hooks/post-receive
--
SQLObject development repository
|