Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for the Telemetry feature. #634

Merged
merged 4 commits into from
Mar 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed phpunit.xml
  • Loading branch information
danielmorell committed Feb 17, 2024
commit 71ffab84f79d57c29a0e01f8cfc8e92178704bae
26 changes: 16 additions & 10 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -3,26 +3,32 @@
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
colors="true"
defaultTestSuite="Rollbar Test Suite"
>
cacheDirectory=".phpunit.cache"
defaultTestSuite="Rollbar Test Suite">
<testsuites>
<testsuite name="Rollbar Test Suite">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/Performance/</exclude>
<exclude>./tests/TestHelpers/</exclude>
<exclude>./tests/FakeDataBuilder.php</exclude>
<exclude>./tests/bootstrap.php</exclude>
<exclude>./tests/BaseRollbarTest.php</exclude>
<exclude>./tests/Performance/</exclude>
<exclude>./tests/TestHelpers/</exclude>
<exclude>./tests/FakeDataBuilder.php</exclude>
<exclude>./tests/bootstrap.php</exclude>
<exclude>./tests/BaseRollbarTest.php</exclude>
</testsuite>

<testsuite name="Rollbar Performance Test Suite">
<directory suffix=".php">./tests/Performance/</directory>
</testsuite>
<testsuite name="Rollbar Performance Test Suite">
<directory suffix=".php">./tests/Performance/</directory>
</testsuite>
</testsuites>

<coverage/>

<php>
<env name="ROLLBAR_TEST_TOKEN" value="ad865e76e7fb496fab096ac07b1dbabb"/>
</php>

<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>
Loading