diff --git a/scripts/release/rpm/test_rpm_package.py b/scripts/release/rpm/test_rpm_package.py index 7e5d71c9494..043629bd9cf 100644 --- a/scripts/release/rpm/test_rpm_package.py +++ b/scripts/release/rpm/test_rpm_package.py @@ -14,7 +14,7 @@ pytest_parallel_cmd = '{} -n auto'.format(pytest_base_cmd) for mod_name in mod_list: - if mod_name in ['botservice', 'network', 'cloud']: + if mod_name in ['botservice', 'network', 'cloud', 'appservice']: exit_code = subprocess.call(['{} --junit-xml /azure_cli_test_result/{}.xml --pyargs azure.cli.command_modules.{}'.format(pytest_base_cmd, mod_name, mod_name)], shell=True) else: exit_code = subprocess.call(['{} --junit-xml /azure_cli_test_result/{}.xml --pyargs azure.cli.command_modules.{}'.format(pytest_parallel_cmd, mod_name, mod_name)], shell=True)