Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
c77bbc35
Commit
c77bbc35
authored
Apr 24, 2021
by
Jens Vagelpohl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Add automated tests against the ZODB ``master`` branch
parent
10778e12
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
46 additions
and
24 deletions
+46
-24
.github/workflows/tests.yml
.github/workflows/tests.yml
+1
-0
.gitignore
.gitignore
+2
-0
CHANGES.rst
CHANGES.rst
+3
-0
tox.ini
tox.ini
+20
-24
zodb-master.cfg
zodb-master.cfg
+20
-0
No files found.
.github/workflows/tests.yml
View file @
c77bbc35
...
...
@@ -25,6 +25,7 @@ jobs:
-
[
"
3.7"
,
"
py37-mtacceptor"
]
-
[
"
3.7"
,
"
py37-mtacceptor-msgpack1"
]
-
[
"
3.7"
,
"
py37-uvloop"
]
-
[
"
3.7"
,
"
py37-zodb-master"
]
-
[
"
pypy2"
,
"
pypy"
]
-
[
"
pypy3"
,
"
pypy3"
]
-
[
"
pypy3"
,
"
pypy3-mtacceptor"
]
...
...
.gitignore
View file @
c77bbc35
...
...
@@ -3,8 +3,10 @@
__pycache__
*.egg-info
.installed.cfg
.mr.developer.cfg
.tox
bin
develop
develop-eggs
dist
eggs
...
...
CHANGES.rst
View file @
c77bbc35
...
...
@@ -4,6 +4,9 @@ Changelog
5.2.3 (unreleased)
------------------
- Add automated tests against the ZODB ``master`` branch
see `issue 177 <https://github.com/zopefoundation/ZEO/issues/177>`_.
- Fix data corruption due to race between load and external invalidations.
See `issue 155 <https://github.com/zopefoundation/ZEO/issues/155>`_.
...
...
tox.ini
View file @
c77bbc35
...
...
@@ -31,34 +31,26 @@ deps =
msgpack
<
1
# ZopeUndo is needed as soft-dependency for a regression test
ZopeUndo
setenv
=
!py27:
PYTHONWARNINGS
=
ignore::ResourceWarning
[testenv:py27-msgpack1]
setenv
=
ZEO_MSGPACK
=
1
[testenv:py27-zeo4]
setenv
=
ZEO4_SERVER
=
1
[testenv:py35-zeo4]
[testenv:py{27,35}-zeo4]
setenv
=
!py27:
PYTHONWARNINGS
=
ignore::ResourceWarning
ZEO4_SERVER
=
1
[testenv:py36-mtacceptor]
setenv
=
ZEO_MTACCEPTOR
=
1
[testenv:py36-mtacceptor-msgpack1]
setenv
=
ZEO_MTACCEPTOR
=
1
ZEO_MSGPACK
=
1
[testenv:py37-mtacceptor]
[testenv:py{36,37,py3}-mtacceptor]
setenv
=
PYTHONWARNINGS
=
ignore::ResourceWarning
ZEO_MTACCEPTOR
=
1
[testenv:py
37
-mtacceptor-msgpack1]
[testenv:py
{36,37,py3}
-mtacceptor-msgpack1]
setenv
=
PYTHONWARNINGS
=
ignore::ResourceWarning
ZEO_MTACCEPTOR
=
1
ZEO_MSGPACK
=
1
...
...
@@ -67,14 +59,18 @@ deps =
{
[testenv]
deps}
uvloop
[testenv:pypy3-mtacceptor]
setenv
=
ZEO_MTACCEPTOR
=
1
[testenv:pypy3-mtacceptor-msgpack1]
setenv
=
ZEO_MTACCEPTOR
=
1
ZEO_MSGPACK
=
1
[testenv:py37-zodb-master]
deps
=
setuptools
<
52
zc.buildout
zope.testrunner
zope.testing
mock
random2
msgpack
<
1
commands
=
{envbindir}/buildout
-c
{toxinidir}/zodb-master.cfg
buildout:
directory
=
{envdir} buildout:develop={toxinidir}
{envbindir}/test
{posargs}
[testenv:simple]
# Test that 'setup.py test' works
...
...
zodb-master.cfg
0 → 100644
View file @
c77bbc35
# This buildout configuration creates test scripts and interpreters that
# pull in the ZODB master branch instead of the latest release.
[buildout]
extends =
buildout.cfg
https://raw.githubusercontent.com/zopefoundation/Zope/master/sources.cfg
extensions = mr.developer
sources-dir = develop
auto-checkout =
ZODB
[versions]
ZODB =
[test]
eggs =
ZEO
# ZopeUndo is needed as soft-dependency for a regression test
ZopeUndo
defaults = ['-cv', '-s', 'ZEO', '--all']
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment