little-island-16971
12/01/2022, 7:27 AMdevtest.php
file like in the vagrant machine. Now when I run the tests inside docker docker/sdk cli -t -x APPLICATION_ENV=devtest codecept run
, all tests working with DB use the same DB that I use for development. That breaks some tests that expect the DB would be empty and fullfill the development DB with data only needed for testing. Someone knows how to configure the deploy.dev.yml
file to use the testing mode and that works with a different DB? Thanks in advanceable-shoe-67344
12/02/2022, 2:20 PMexport SPRYKER_PROJECT_NAME=devtest
TESTFILE=deploy.devtest.yml
cp deploy.dev.yml $TESTFILE
# rename key 'namespace' in $TESTFILE
docker/sdk -p $SPRYKER_PROJECT_NAME boot $TESTFILE
docker/sdk -p $SPRYKER_PROJECT_NAME testing -x APPLICATION_ENV=devtest codecept run
little-island-16971
12/06/2022, 10:58 AMable-shoe-67344
12/09/2022, 4:02 PMlittle-island-16971
12/09/2022, 6:59 PM