| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Got tired of `EE/home/travis/build.sh: line 45: 4445 Segmentation fault (core dumped) phpunit -v` using PHP 7.1.0beta3
|
|
|
|
| |
Using some tricks from symfony/symfony
|
|
|
|
|
|
|
|
| |
Ensure tests after the InstallCommand test will have a clean database.
Previous attempt failed because of a foreign key
Also, nightly on Travis seems to target PHP 7.2-dev, so I put 7.1 in requirement and moved nightly in allowed failures.
And it seems xdebug isn't shipped with PHP 7.1, so I added a workaround to avoid build to fail when trying to remove xdebug.ini file.
|
|
|
|
|
| |
- Using nightly (as of now it's PHP 7.1 alpha)
- Force guzzle to be at least 5.3.1 (which fix some bugs in PHP 7)
|
| |
|
| |
|
|
|
|
| |
Also, turn yaml lint into a more versbose check
|
|
|
|
|
| |
- travis tabulation
- extra namespace definition in entities
|
|
|
|
|
| |
Run php-cs-fixer to avoid CS on commits
Add a check on translation message using the built-in yaml validator. It'll avoid typo in translation yaml files.
|
|
|
|
| |
https://twitter.com/seldaek/status/708236348281495552
|
|
|
|
| |
We are using it differently with .composer-auth.json file
|
|
|
|
| |
Test database was renamed in https://github.com/wallabag/wallabag/pull/1639 but the travis configuration was missed
|
| |
|
|
|
|
|
| |
Instead of allowing only v2.
Branches which didn't target v2 BUT related to v2 weren't tested on Travis
|
|
|
|
|
|
| |
Use travis_wait to avoid travis timeout on `composer up`
Jump to `memory_limit -1` for `composer up`
Also, since composer.lock is ignored, we can remove it.
|
| |
|
|
|
|
| |
See https://github.com/K-Phoen/rulerz/pull/21/files#diff-b5d0ee8c97c7abd7e3fa29b9a27d1780
|
| |
|
|
|
|
|
|
|
| |
Had to restrict scheb/two-factor-bundle to ~1.4.0 because of a circular service reference.
See https://github.com/scheb/two-factor-bundle/issues/33.
Also updated php version requirement to 5.5.0.
|
|
|
|
|
|
| |
It will slow down the whole test suite (because it'll use doctrine command).
Remove unecessary `KernelTestCase`.
Also rename `AbstractControllerTest` to `WallabagApiTestCase` for consistency.
|
|
|
|
| |
Also force SYMFONY_DEPRECATIONS_HELPER for travis
|
| |
|
|
|
|
| |
From: http://blog.wyrihaximus.net/2015/09/github-auth-token-on-travis/
|
| |
|
| |
|
|
|
|
|
|
| |
It takes ages to process and most of the time the build fail for "execution time" too long.
Too much time already burned to investigate it.
We'll investigate later, it's not a priority atm.
|
| |
|
|
|
|
|
|
|
|
| |
They are god damn too long to execute because it launch external command (mostly related to doctrine).
So I've added a PHPUnit @group (`command-doctrine`) so that we can avoid launching them on a regular basis, like that:
`phpunit --exclude-group command-doctrine`
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|