From 7154b917fdbb0180a0b0dd9b716908a8d3a6087d Mon Sep 17 00:00:00 2001 From: Davert Date: Mon, 25 Jul 2016 02:20:45 +0300 Subject: [PATCH] fixed travis config --- .travis.yml | 6 ------ composer.lock | 20 ++++++++++---------- tests/acceptance/AboutCest.php | 1 - 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24b5d54..d6f0e67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,18 +20,12 @@ install: - travis_retry composer global require "fxp/composer-asset-plugin:~1.1.1" - export PATH="$HOME/.composer/vendor/bin:$PATH" - travis_retry composer install --dev --prefer-dist --no-interaction -# codeception - - travis_retry composer global require "codeception/codeception=2.0.*" "codeception/specify=*" "codeception/verify=*" # setup application: - | sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php - cd tests - codecept build - cd .. script: - | cd web php -S localhost:8080 > /dev/null 2>&1 & - cd ../tests codecept run diff --git a/composer.lock b/composer.lock index c0d86f4..b79ff2e 100644 --- a/composer.lock +++ b/composer.lock @@ -257,16 +257,16 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.7.0", + "version": "v4.8.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "ae1828d955112356f7677c465f94f7deb7d27a40" + "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/ae1828d955112356f7677c465f94f7deb7d27a40", - "reference": "ae1828d955112356f7677c465f94f7deb7d27a40", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2", + "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2", "shasum": "" }, "require": { @@ -297,7 +297,7 @@ "keywords": [ "html" ], - "time": "2015-08-05 01:03:42" + "time": "2016-07-16 12:58:58" }, { "name": "swiftmailer/swiftmailer", @@ -624,16 +624,16 @@ }, { "name": "codeception/verify", - "version": "0.3.0", + "version": "0.3.1", "source": { "type": "git", "url": "https://github.com/Codeception/Verify.git", - "reference": "d3721cfc668d96b41acbda3ecd01d3499381db64" + "reference": "dc19c8722f3756341e5b0ce0590f09fda1d63719" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Verify/zipball/d3721cfc668d96b41acbda3ecd01d3499381db64", - "reference": "d3721cfc668d96b41acbda3ecd01d3499381db64", + "url": "https://api.github.com/repos/Codeception/Verify/zipball/dc19c8722f3756341e5b0ce0590f09fda1d63719", + "reference": "dc19c8722f3756341e5b0ce0590f09fda1d63719", "shasum": "" }, "require-dev": { @@ -653,7 +653,7 @@ } ], "description": "BDD assertion library for PHPUnit", - "time": "2015-11-26 23:23:25" + "time": "2016-07-13 09:34:15" }, { "name": "fzaninotto/faker", diff --git a/tests/acceptance/AboutCest.php b/tests/acceptance/AboutCest.php index 6f688ec..8c1276e 100644 --- a/tests/acceptance/AboutCest.php +++ b/tests/acceptance/AboutCest.php @@ -6,7 +6,6 @@ class AboutCest public function ensureThatAboutWorks(AcceptanceTester $I) { $I->amOnPage(Url::toRoute('/site/about')); - $I->pauseExecution(); $I->see('About', 'h1'); } }