Skip to content

Commit 148134d

Browse files
committed
chore: update test.yml
1 parent 07de0f3 commit 148134d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Run tests
4949
env:
50-
GROK_API_KEY: sk-test-key
51-
GROK_BASE_URL: https://api.x.ai/
50+
GROK_API_KEY: ${{ secrets.GROK_API_KEY }}
51+
GROK_BASE_URL: ${{ secrets.GROK_BASE_URL }}
5252
run: |
53-
composer test --testsuite Unit
53+
composer test -- --testsuite Unit

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
<testsuites>
99
<testsuite name="Unit">
10-
<directory>tests/Unit</directory>
10+
<directory>./tests/Unit</directory>
1111
</testsuite>
1212
<testsuite name="Integration">
13-
<directory>tests/Integration</directory>
13+
<directory>./tests/Integration</directory>
1414
</testsuite>
1515
</testsuites>
1616

0 commit comments

Comments
 (0)