mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Fix subunit test suite name.
Only run it when testscenarios is installed, as it depends on that. Change-Id: I1e1284024cf94f909e585a55b8a15e33273f167b Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
1800bc567d
commit
fb08cd5310
@ -37,7 +37,12 @@ if have_man_pages_support:
|
||||
planpythontestsuite("none", "samba.tests.docs")
|
||||
|
||||
planpythontestsuite("none", "selftest.tests.test_suite", extra_path=[srcdir()])
|
||||
planpythontestsuite("none", "subunit")
|
||||
try:
|
||||
import testscenarios
|
||||
except ImportError:
|
||||
skiptestsuite("subunit", "testscenarios not available")
|
||||
else:
|
||||
planpythontestsuite("none", "subunit.tests.test_suite")
|
||||
planpythontestsuite("none", "samba.tests.blackbox.ndrdump")
|
||||
planpythontestsuite("none", "api", name="ldb.python", extra_path=['lib/ldb/tests/python'])
|
||||
planpythontestsuite("none", "samba.tests.credentials")
|
||||
|
Loading…
Reference in New Issue
Block a user