Using .env.testing.example for now. Always previously used phpunit.xml but optioned not to this time.
Aug 25, 2016
3
Level 65
APP_KEY being pulled from .env.testing when running PHPUnit?
I'm running a fresh install of 5.3 and I have an .env.testing file that I copy to .env for my CI. I also have a build file locally so I can run the same tests.
When I run the local build file, it uses .env.testing and complains about the APP_KEY length. In .env.testing, I have it set as 'key' so I can just run php artisan key:generate on CI.
If I rename .env.testing to something else, it works fine (and I guess it uses the .env version).
Does Laravel 5.3 now use .env.testing? I see no documentation on it.
1) ExampleTest::testBasicExample
RuntimeException: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
Please or to participate in this conversation.