-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid password for admin, remove unneeded static test steps.
- Loading branch information
1 parent
01e04da
commit b9134fe
Showing
1 changed file
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,20 +8,6 @@ trap '>&2 echo Error: Command \`$BASH_COMMAND\` on line $LINENO failed with exit | |
|
||
# prepare for test suite | ||
case $TEST_SUITE in | ||
static) | ||
cd dev/tests/static | ||
|
||
echo "==> preparing changed files list" | ||
changed_files_ce="$TRAVIS_BUILD_DIR/dev/tests/static/testsuite/Magento/Test/_files/changed_files_ce.txt" | ||
php get_github_changes.php \ | ||
--output-file="$changed_files_ce" \ | ||
--base-path="$TRAVIS_BUILD_DIR" \ | ||
--repo='https://github.com/OpenMage/magento-lts.git' \ | ||
--branch="$TRAVIS_BRANCH" | ||
sed 's/^/ + including /' "$changed_files_ce" | ||
|
||
cd ../../.. | ||
;; | ||
functional) | ||
echo "Installing Magento" | ||
mysql -uroot -e 'CREATE DATABASE magento;' | ||
|
@@ -32,7 +18,7 @@ case $TEST_SUITE in | |
--url "http://${MAGENTO_HOST_NAME}/" --use_rewrites yes --use_secure no \ | ||
--secure_base_url "http://${MAGENTO_HOST_NAME}/" --use_secure_admin no \ | ||
--admin_lastname Owner --admin_firstname Store --admin_email "[email protected]" \ | ||
--admin_username admin --admin_password 123123 \ | ||
--admin_username admin --admin_password asd123#2*53515523 \ | ||
--encryption_key "I2V7t7fiCIRKw9FWz4m3CStgeBG1T+ATZ0Us+W8jAIk=" | ||
|
||
echo "Prepare functional tests for running" | ||
|