Commit 83730901 authored by Kirill Smelkov's avatar Kirill Smelkov Committed by GitHub

Run tests at all levels

/reviewed-by @d-maurer 
/reviewed-on https://github.com/zopefoundation/ZEO/pull/210
parents 981ddc1d 06f8e146
...@@ -16,9 +16,9 @@ with-sphinx-doctests = false ...@@ -16,9 +16,9 @@ with-sphinx-doctests = false
use-flake8 = true use-flake8 = true
testenv-commands = [ testenv-commands = [
"# Run unit tests first.", "# Run unit tests first.",
"zope-testrunner -u --test-path=src {posargs:-vc}", "zope-testrunner -u --test-path=src -a 1000 {posargs:-vc}",
"# Only run functional tests if unit tests pass.", "# Only run functional tests if unit tests pass.",
"zope-testrunner -f --test-path=src {posargs:-vc}", "zope-testrunner -f --test-path=src -a 1000 {posargs:-vc}",
] ]
testenv-deps = [ testenv-deps = [
"!zodbmaster: ZODB >= 4.2.0b1", "!zodbmaster: ZODB >= 4.2.0b1",
......
...@@ -28,9 +28,9 @@ setenv = ...@@ -28,9 +28,9 @@ setenv =
zeo4: ZEO4_SERVER=1 zeo4: ZEO4_SERVER=1
commands = commands =
# Run unit tests first. # Run unit tests first.
zope-testrunner -u --test-path=src {posargs:-vc} zope-testrunner -u --test-path=src -a 1000 {posargs:-vc}
# Only run functional tests if unit tests pass. # Only run functional tests if unit tests pass.
zope-testrunner -f --test-path=src {posargs:-vc} zope-testrunner -f --test-path=src -a 1000 {posargs:-vc}
extras = extras =
test test
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment