Skip to content

Commit

Permalink
Moves ArchiveWebTest to Integration tests (#12692)
Browse files Browse the repository at this point in the history
* move ArchiveWebTest to Integration tests

* ignore downloaded geoip files in file size check
  • Loading branch information
sgiehl committed Apr 1, 2018
1 parent da1fec5 commit f7cee04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Expand Up @@ -5,7 +5,7 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Tests\System;
namespace Piwik\Tests\Integration;

use Piwik\Option;
use Piwik\Http;
Expand Down
5 changes: 5 additions & 0 deletions tests/PHPUnit/Integration/ReleaseCheckListTest.php
Expand Up @@ -599,6 +599,11 @@ private function isFileIncludedInFinalRelease($file)
return false;
}

// ignore downloaded geoip files
if(strpos($file, 'GeoIP') !== false && strpos($file, '.dat') !== false) {
return false;
}

if($this->isFileIsAnIconButDoesNotBelongToDistribution($file)) {
return false;
}
Expand Down

0 comments on commit f7cee04

Please sign in to comment.