We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07de0f3 commit 148134dCopy full SHA for 148134d
.github/workflows/test.yml
@@ -47,7 +47,7 @@ jobs:
47
48
- name: Run tests
49
env:
50
- GROK_API_KEY: sk-test-key
51
- GROK_BASE_URL: https://api.x.ai/
+ GROK_API_KEY: ${{ secrets.GROK_API_KEY }}
+ GROK_BASE_URL: ${{ secrets.GROK_BASE_URL }}
52
run: |
53
- composer test --testsuite Unit
+ composer test -- --testsuite Unit
phpunit.xml
@@ -7,10 +7,10 @@
7
8
<testsuites>
9
<testsuite name="Unit">
10
- <directory>tests/Unit</directory>
+ <directory>./tests/Unit</directory>
11
</testsuite>
12
<testsuite name="Integration">
13
- <directory>tests/Integration</directory>
+ <directory>./tests/Integration</directory>
14
15
</testsuites>
16
0 commit comments