From f190a0fc0db2bcf4e5789d0c58ce368e42f17224 Mon Sep 17 00:00:00 2001 From: rzaitov Date: Tue, 5 Nov 2013 16:30:45 +0400 Subject: [PATCH] =?UTF-8?q?=D1=80=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BB=20=D1=80=D1=83=D1=87=D0=BD=D0=BE=D0=B9=20?= =?UTF-8?q?=D1=82=D0=B5=D1=81=D1=82=20=D0=B4=D0=BB=D1=8F=20=D1=83=D1=81?= =?UTF-8?q?=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=BA=D0=B8=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D1=84=D0=B8=D0=BB=D1=8F=20=D0=BE=D0=B1=D0=B5=D1=81=D0=BF=D0=B5?= =?UTF-8?q?=D1=87=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/Tests/ManualTests/install_profile.py | 8 ++++++++ scripts/run_manual_tests.py | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 scripts/Tests/ManualTests/install_profile.py diff --git a/scripts/Tests/ManualTests/install_profile.py b/scripts/Tests/ManualTests/install_profile.py new file mode 100644 index 0000000..1f588f6 --- /dev/null +++ b/scripts/Tests/ManualTests/install_profile.py @@ -0,0 +1,8 @@ +from CommandBuilders.InstallProfileCommandBuilder import InstallProfileCommandBuilder + +line = "install profile 'BuildSample/BuildSample/Profiles/8F606DAE-F9C9-4A19-8EFF-34B990D76C28.mobileprovision'" + +builder = InstallProfileCommandBuilder() +command = builder.getCommandFor(line) + +command.execute() \ No newline at end of file diff --git a/scripts/run_manual_tests.py b/scripts/run_manual_tests.py index e4f2173..48d8410 100644 --- a/scripts/run_manual_tests.py +++ b/scripts/run_manual_tests.py @@ -18,5 +18,6 @@ os.chdir(baseDir) #import ManualTests.remove_project #import ManualTests.infoplist_test #import ManualTests.clean_test -import Tests.ManualTests.testflight_test +#import Tests.ManualTests.testflight_test +import Tests.ManualTests.install_profile