Skip to content

Commit 6b1b478

Browse files
committed
Fix envrionment configuration
1 parent ce138d0 commit 6b1b478

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.env.travis renamed to .env.ci

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ APP_ENV=testing
22
APP_DEBUG=true
33
APP_KEY=SomeRandomString3232RandomString
44
APP_THEME=pterodactyl
5-
APP_TIMEZONE=UTC
5+
APP_TIMEZONE=America/Los_Angeles
66
APP_URL=http://localhost/
77

88
TESTING_DB_HOST=127.0.0.1
9-
TESTING_DB_DATABASE=travis
9+
TESTING_DB_DATABASE=panel_test
1010
TESTING_DB_USERNAME=root
11-
TESTING_DB_PASSWORD=""
11+
TESTING_DB_PASSWORD=
1212

1313
CACHE_DRIVER=array
1414
SESSION_DRIVER=array

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
extensions: cli, openssl, gd, mysql, pdo, mbstring, tokenizer, bcmath, xml, curl, zip
4141
tools: composer:v1
4242
coverage: none
43+
- name: configure
44+
run: cp .env.ci .env
4345
- name: install dependencies
4446
run: composer install --prefer-dist --no-interaction --no-progress
4547
- name: execute tests

0 commit comments

Comments
 (0)