@@ -977,23 +977,23 @@ odoo-helper test bureaucrat_knowledge
977977odoo-helper db drop odoo16-odoo-test;
978978
979979
980- # echo -e "${YELLOWC}
980+ echo -e " ${YELLOWC}
981981#=================================
982982#Install and check Odoo 17.0 (Py3)
983983#=================================
984- # ${NC}"
984+ ${NC} "
985985
986986cd ../;
987987
988- # Remove odoo 17
988+ # Remove odoo 16
989989# this is needed to bypass gitlab.com limitation of disk space for CI jobs
990990rm -rf ./odoo-16.0
991991
992992# Install odoo 17
993993odoo-helper install sys-deps -y 17.0;
994994
995995odoo-install --install-dir odoo-17.0 --odoo-version 17.0 \
996- --http-port 8569 --http-host local-odoo-17 \
996+ --http-port 17569 \
997997 --db-user odoo17 --db-pass odoo --create-db-user \
998998 --build-python-if-needed
999999
@@ -1033,6 +1033,63 @@ odoo-helper install website;
10331033odoo-helper db drop odoo17-odoo-test;
10341034
10351035
1036+ echo -e " ${YELLOWC}
1037+ #=================================
1038+ #Install and check Odoo 18.0 (Py3)
1039+ #=================================
1040+ ${NC} "
1041+
1042+ cd ../;
1043+
1044+ # Remove odoo 17
1045+ # this is needed to bypass gitlab.com limitation of disk space for CI jobs
1046+ rm -rf ./odoo-17.0
1047+
1048+ # Install odoo 18
1049+ odoo-helper install sys-deps -y 18.0;
1050+
1051+ odoo-install --install-dir odoo-18.0 --odoo-version 18.0 \
1052+ --http-port 18069 \
1053+ --db-user odoo18 --db-pass odoo --create-db-user \
1054+ --build-python-if-needed
1055+
1056+ cd odoo-18.0;
1057+
1058+ # Install py-tools and js-tools
1059+ odoo-helper install py-tools;
1060+ odoo-helper install js-tools;
1061+
1062+ odoo-helper server run --stop-after-init; # test that it runs
1063+
1064+ # Show project status
1065+ odoo-helper status;
1066+ odoo-helper server status;
1067+ odoo-helper start;
1068+ odoo-helper ps;
1069+ odoo-helper status;
1070+ odoo-helper server status;
1071+ odoo-helper stop;
1072+
1073+ # Show complete odoo-helper status
1074+ odoo-helper status --tools-versions --ci-tools-versions;
1075+
1076+ # Database management
1077+ odoo-helper db create --tdb --lang en_US;
1078+
1079+ odoo-helper addons update-list --tdb;
1080+ odoo-helper addons install --tdb --module crm;
1081+ odoo-helper addons test-installed crm;
1082+
1083+ odoo-helper lsd; # List databases
1084+
1085+ # # Install addon website via 'odoo-helper install'
1086+ odoo-helper install website;
1087+
1088+ # Drop created databases
1089+ odoo-helper db drop odoo18-odoo-test;
1090+
1091+
1092+
10361093echo -e " ${YELLOWC}
10371094=============================================================
10381095Run 'prepare-docs' script to test generation of help messages
0 commit comments