diff --git test/ucs-test/debian/control test/ucs-test/debian/control index 79f559fed8..16fc7de031 100644 --- test/ucs-test/debian/control +++ test/ucs-test/debian/control @@ -196,6 +196,7 @@ Depends: python, python-netifaces, python-pexpect, + python-pytest, swaks, ucs-test-libs (= ${source:Version}), ${misc:Depends}, diff --git test/ucs-test/tests/40_mail/47_send_mail_to_alternative_address test/ucs-test/tests/40_mail/47_send_mail_to_alternative_address index 38ed7efece..48a7fcc57f 100755 --- test/ucs-test/tests/40_mail/47_send_mail_to_alternative_address +++ test/ucs-test/tests/40_mail/47_send_mail_to_alternative_address @@ -1,4 +1,4 @@ -#!/usr/share/ucs-test/runner python +#!/usr/share/ucs-test/runner /usr/bin/pytest -l -v ## desc: Test unionmap ## tags: [udm,apptest] ## roles: [domaincontroller_master] @@ -164,12 +164,3 @@ def test_group_mail_in_mailing_list(): send_mail(recipients=list_mail, msg=token, debuglevel=0) for mail in group_mails: check_delivery(token, mail, True) - - -if __name__ == '__main__': - test_user_b_mail_alt_equal_user_a_mail_primary() - test_group_mail_equal_user_mail_alt() - test_mail_list_equal_user_mail_alt() - test_user_mail_alt_eqals_shared_folder_mail_address() - test_group_mail_in_mailing_list() -