diff options
author | Oisin Canty <o.canty@f5.com> | 2021-05-20 13:03:12 +0000 |
---|---|---|
committer | Oisin Canty <o.canty@f5.com> | 2021-05-20 13:03:12 +0000 |
commit | e50bb120e2a2dfad55d28724133656264ef13dc8 (patch) | |
tree | 53a115359a9ad7d1f60f5dadb6f88a431a9eb563 /test/unit | |
parent | f60389a782470e31dc555ab864784b536f2544ca (diff) | |
download | unit-e50bb120e2a2dfad55d28724133656264ef13dc8.tar.gz unit-e50bb120e2a2dfad55d28724133656264ef13dc8.tar.bz2 |
Tests: Python targets.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/applications/lang/python.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/unit/applications/lang/python.py b/test/unit/applications/lang/python.py index 287d23f0..b399dffd 100644 --- a/test/unit/applications/lang/python.py +++ b/test/unit/applications/lang/python.py @@ -42,8 +42,15 @@ class TestApplicationPython(TestApplicationProto): "module": module, } - for attr in ('callable', 'home', 'limits', 'path', 'protocol', - 'threads'): + for attr in ( + 'callable', + 'home', + 'limits', + 'path', + 'protocol', + 'targets', + 'threads', + ): if attr in kwargs: app[attr] = kwargs.pop(attr) |