Fix envrionment configuration

This commit is contained in:
Dane Everitt 2020-06-28 15:26:09 -07:00
parent ce138d07a9
commit 6b1b478cb9
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 5 additions and 3 deletions

View file

@ -2,13 +2,13 @@ APP_ENV=testing
APP_DEBUG=true APP_DEBUG=true
APP_KEY=SomeRandomString3232RandomString APP_KEY=SomeRandomString3232RandomString
APP_THEME=pterodactyl APP_THEME=pterodactyl
APP_TIMEZONE=UTC APP_TIMEZONE=America/Los_Angeles
APP_URL=http://localhost/ APP_URL=http://localhost/
TESTING_DB_HOST=127.0.0.1 TESTING_DB_HOST=127.0.0.1
TESTING_DB_DATABASE=travis TESTING_DB_DATABASE=panel_test
TESTING_DB_USERNAME=root TESTING_DB_USERNAME=root
TESTING_DB_PASSWORD="" TESTING_DB_PASSWORD=
CACHE_DRIVER=array CACHE_DRIVER=array
SESSION_DRIVER=array SESSION_DRIVER=array

View file

@ -40,6 +40,8 @@ jobs:
extensions: cli, openssl, gd, mysql, pdo, mbstring, tokenizer, bcmath, xml, curl, zip extensions: cli, openssl, gd, mysql, pdo, mbstring, tokenizer, bcmath, xml, curl, zip
tools: composer:v1 tools: composer:v1
coverage: none coverage: none
- name: configure
run: cp .env.ci .env
- name: install dependencies - name: install dependencies
run: composer install --prefer-dist --no-interaction --no-progress run: composer install --prefer-dist --no-interaction --no-progress
- name: execute tests - name: execute tests