forked from prestaconcept/PrestaSitemapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Travis testing matrix (prestaconcept#145)
* Updated Travis testing matrix * Fixing Travis build * Fixing Travis build * Fixed risky tests * Removed HHVM in favor of PHP 7.1 * Removed unecessary bundles in test app * Adde security config to test app to avoid deprecations * Do not get router.request_context service directly to avoid deprecations * Fixed PhpUnit and Symfony4 deprecations
- Loading branch information
1 parent
f6520b7
commit e797d33
Showing
10 changed files
with
81 additions
and
29 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*~ | ||
Tests/app/cache/ | ||
composer.lock | ||
phpunit.xml | ||
vendor/ | ||
Tests/web |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | ||
xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"> | ||
<url> | ||
<loc>http://sitemap.php54.local/page_video1/</loc> | ||
<video:video> | ||
<video:thumbnail_loc>http://sitemap.php54.local/page_video1/thumbnail_loc?a=b&b=c</video:thumbnail_loc> | ||
<video:title><![CDATA[Title & spécial chars]]></video:title> | ||
<video:description><![CDATA[The description & spécial chars]]></video:description> | ||
<video:content_loc>http://sitemap.php54.local/page_video1/content?format=mov&a=b</video:content_loc> | ||
<video:gallery_loc title="Gallery title & spécial chars">http://sitemap.php54.local/page_video1/gallery_loc/?p=1&sort=desc</video:gallery_loc> | ||
</video:video> | ||
</url> | ||
<url> | ||
<loc>http://sitemap.php54.local/page_video1/</loc> | ||
<video:video> | ||
<video:thumbnail_loc>http://sitemap.php54.local/page_video1/thumbnail_loc?a=b&b=c</video:thumbnail_loc> | ||
<video:title><![CDATA[Title & spécial chars]]></video:title> | ||
<video:description><![CDATA[The description & spécial chars]]></video:description> | ||
<video:content_loc>http://sitemap.php54.local/page_video1/content?format=mov&a=b</video:content_loc> | ||
<video:gallery_loc title="Gallery title & spécial chars">http://sitemap.php54.local/page_video1/gallery_loc/?p=1&sort=desc</video:gallery_loc> | ||
</video:video> | ||
</url> | ||
</urlset> |
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="./Tests/bootstrap.php" colors="true"> | ||
<php> | ||
<server name="KERNEL_CLASS" value="AppKernel" /> | ||
</php> | ||
<testsuites> | ||
<testsuite name="PrestaSitemapBundle test suite"> | ||
<directory suffix="Test.php">./Tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory>./</directory> | ||
<exclude> | ||
<directory>./Resources</directory> | ||
<directory>./Tests</directory> | ||
<directory>./vendor</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
</phpunit> | ||
|