diff --git a/appinfo/info.xml b/appinfo/info.xml index 756b4a81..5935de2c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -75,7 +75,6 @@ to join us in shaping a more versatile, stable, and secure app landscape. - OCA\AppAPI\Command\ExApp\Deploy OCA\AppAPI\Command\ExApp\Register OCA\AppAPI\Command\ExApp\Unregister OCA\AppAPI\Command\ExApp\Update diff --git a/lib/Command/ExApp/Deploy.php b/lib/Command/ExApp/Deploy.php deleted file mode 100644 index a128b3f9..00000000 --- a/lib/Command/ExApp/Deploy.php +++ /dev/null @@ -1,39 +0,0 @@ -setName('app_api:app:deploy'); - $this->setDescription('Deploy ExApp on configured daemon'); - - $this->addArgument('appid', InputArgument::REQUIRED); - $this->addArgument('daemon-config-name', InputArgument::OPTIONAL); - - $this->addOption('info-xml', null, InputOption::VALUE_REQUIRED, 'Path to ExApp info.xml file (url or local absolute path)'); - } - - protected function execute(InputInterface $input, OutputInterface $output): int { - $output->writeln("Use only `register` command, this command is deprecated."); - return 0; - } -} diff --git a/tests/test_occ_commands_docker.py b/tests/test_occ_commands_docker.py index 10eec216..dade037b 100644 --- a/tests/test_occ_commands_docker.py +++ b/tests/test_occ_commands_docker.py @@ -30,12 +30,6 @@ def unregister_daemon(): def deploy_register(): - run( - f"php occ app_api:app:deploy app-skeleton-python docker_local_sock --info-xml {SKELETON_XML_URL}".split(), - stderr=DEVNULL, - stdout=DEVNULL, - check=True, - ) run( f"php occ app_api:app:register app-skeleton-python docker_local_sock --info-xml {SKELETON_XML_URL}".split(), stderr=DEVNULL,