Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
run: composer install --no-interaction --prefer-dist --no-progress

- name: Run tests
run: vendor/bin/phpunit Tests/*
run: vendor/bin/phpunit
19 changes: 19 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false"
failOnWarning="true"
failOnRisky="true"
failOnIncomplete="true"
failOnSkipped="true"
failOnDeprecation="true">
<testsuites>
<testsuite name="ISO7064Mod97_10 Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="1"/>
</php>
</phpunit>
Loading