Integrate cuteci installer into aqtinstall (#239)

* Add cuteci intaller

* Check qtaccount.ini existence

* Fix subprocess call

* sub command show elapsed time

* test: cli: update help message exception

* Update URL base handling

* old version installer accept environment variable

- qtaccount: QTLOGIN and QTPASSWORD variable

* Change cuteci sub command to 'offline_installer'

* Update qscript to deselect QtCreator from installation

* Reuse downloaded installer file

* Update test and fix MANIFEST

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2021-05-20 14:43:02 +09:00
committed by GitHub
parent 8370fe112e
commit 57cec9e2e0
8 changed files with 523 additions and 20 deletions

View File

@@ -5,7 +5,7 @@ def test_cli_help(capsys):
expected = "".join(
[
"usage: aqt [-h] [--logging-conf LOGGING_CONF] [--logger LOGGER]\n",
" {install,doc,examples,src,tool,list,help} ...\n",
" {install,doc,examples,src,tool,list,offline_installer,help} ...\n",
"\n",
"Installer for Qt SDK.\n",
"\n",
@@ -18,7 +18,7 @@ def test_cli_help(capsys):
"subcommands:\n",
" Valid subcommands\n",
"\n",
" {install,doc,examples,src,tool,list,help}\n",
" {install,doc,examples,src,tool,list,offline_installer,help}\n",
" subcommand for aqt Qt installer\n",
]
)
@@ -62,7 +62,7 @@ def test_cli_launch_with_no_argument(capsys):
expected = "".join(
[
"usage: aqt [-h] [--logging-conf LOGGING_CONF] [--logger LOGGER]\n",
" {install,doc,examples,src,tool,list,help} ...\n",
" {install,doc,examples,src,tool,list,offline_installer,help} ...\n",
"\n",
"Installer for Qt SDK.\n",
"\n",
@@ -75,7 +75,7 @@ def test_cli_launch_with_no_argument(capsys):
"subcommands:\n",
" Valid subcommands\n",
"\n",
" {install,doc,examples,src,tool,list,help}\n",
" {install,doc,examples,src,tool,list,offline_installer,help}\n",
" subcommand for aqt Qt installer\n",
]
)