Skip to content

Commit

Permalink
Add tests for Odoo 17
Browse files Browse the repository at this point in the history
  • Loading branch information
katyukha committed Nov 15, 2023
1 parent 9f0b1ac commit 4504044
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions tests/test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -983,54 +983,54 @@ odoo-helper db drop odoo16-odoo-test;
#=================================
#${NC}"

#cd ../;
cd ../;

## Remove odoo 17
## this is needed to bypass gitlab.com limitation of disk space for CI jobs
#rm -rf ./odoo-16.0
# Remove odoo 17
# this is needed to bypass gitlab.com limitation of disk space for CI jobs
rm -rf ./odoo-16.0

## Install odoo 17
#odoo-helper install sys-deps -y 17.0;
# Install odoo 17
odoo-helper install sys-deps -y 17.0;

#odoo-install --install-dir odoo-17.0 --odoo-version 17.0 \
#--http-port 8569 --http-host local-odoo-16 \
#--db-user odoo16 --db-pass odoo --create-db-user \
#--build-python-if-needed
odoo-install --install-dir odoo-17.0 --odoo-version 17.0 \
--http-port 8569 --http-host local-odoo-17 \
--db-user odoo17 --db-pass odoo --create-db-user \
--build-python-if-needed

#cd odoo-17.0;
cd odoo-17.0;

## Install py-tools and js-tools
#odoo-helper install py-tools;
#odoo-helper install js-tools;
# Install py-tools and js-tools
odoo-helper install py-tools;
odoo-helper install js-tools;

#odoo-helper server run --stop-after-init; # test that it runs
odoo-helper server run --stop-after-init; # test that it runs

## Show project status
#odoo-helper status;
#odoo-helper server status;
#odoo-helper start;
#odoo-helper ps;
#odoo-helper status;
#odoo-helper server status;
#odoo-helper stop;
# Show project status
odoo-helper status;
odoo-helper server status;
odoo-helper start;
odoo-helper ps;
odoo-helper status;
odoo-helper server status;
odoo-helper stop;

## Show complete odoo-helper status
#odoo-helper status --tools-versions --ci-tools-versions;
# Show complete odoo-helper status
odoo-helper status --tools-versions --ci-tools-versions;

## Database management
#odoo-helper db create --tdb --lang en_US;
# Database management
odoo-helper db create --tdb --lang en_US;

#odoo-helper addons update-list --tdb;
#odoo-helper addons install --tdb --module crm;
#odoo-helper addons test-installed crm;
odoo-helper addons update-list --tdb;
odoo-helper addons install --tdb --module crm;
odoo-helper addons test-installed crm;

#odoo-helper lsd; # List databases
odoo-helper lsd; # List databases

### Install addon website via 'odoo-helper install'
#odoo-helper install website;
## Install addon website via 'odoo-helper install'
odoo-helper install website;

## Drop created databases
#odoo-helper db drop odoo17-odoo-test;
# Drop created databases
odoo-helper db drop odoo17-odoo-test;


echo -e "${YELLOWC}
Expand Down

0 comments on commit 4504044

Please sign in to comment.