Skip to content

Commit

Permalink
fix gh action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrajodas committed Nov 14, 2023
1 parent 3652624 commit faf2f96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ jobs:
uses: actions/checkout@v3
- name: Build and run tests
run: |
docker-compose build
docker-compose run --rm wait
docker-compose run --rm tests
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
stopOnFailure="true"
bootstrap="vendor/autoload.php">

<testsuites>
<testsuite name="DB Writer Common PHPunit">
<testsuite name="unit">
<directory>tests/phpunit</directory>
</testsuite>
<testsuite name="DB Writer MySQL Datadir">
<testsuite name="functional">
<directory>tests/functional</directory>
</testsuite>
</testsuites>
Expand Down

0 comments on commit faf2f96

Please sign in to comment.