You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/06/02 02:21:19 UTC

[incubator-ponymail-unit-tests] branch master updated: only extend with generators for the generator check

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-unit-tests.git


The following commit(s) were added to refs/heads/master by this push:
     new 22c437e  only extend with generators for the generator check
22c437e is described below

commit 22c437ee5e22cafebd23f3a35c34684250062653
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Jun 2 04:21:11 2021 +0200

    only extend with generators for the generator check
---
 runall.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runall.py b/runall.py
index c9ba603..e37324c 100755
--- a/runall.py
+++ b/runall.py
@@ -64,7 +64,7 @@ if __name__ == '__main__':
                     cliargs = [PYTHON3, 'tests/test-%s.py' % test_type, '--rootdir', args.rootdir, '--load', spec_file,]
                     if args.nomboxo:
                         cliargs.append('--nomboxo')
-                    if args.gtype:
+                    if args.gtype and test_type == 'generators':
                         cliargs.append('--generators')
                         cliargs.extend(args.gtype)
                     rv = subprocess.check_output(cliargs, env=env)