Skip to content

Commit

Permalink
fix: change stage names and fix phpunit xml directory mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSkroblin committed Oct 12, 2023
1 parent f8625fd commit f7ab170
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/02-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:

jobs:
phpunit:
array-storage:
runs-on: ubuntu-latest

steps:
Expand All @@ -22,13 +22,13 @@ jobs:
- name: Run PHPUnit Tests
run: ./vendor/bin/phpunit --testsuite=array

mysql:
mysql-storage:
runs-on: ubuntu-latest
services:
database:
image: mysql:8.0
env:
MYSQL_USERNAME: shopware
MYSQL_USER: shopware
MYSQL_PASSWORD: shopware
MYSQL_ROOT_PASSWORD: shopware
MYSQL_DATABASE: shopware
Expand Down
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
</testsuite>

<testsuite name="dynamodb">
<directory>tests/Dynamodb</directory>
<directory>tests/DynamoDB</directory>
</testsuite>

<testsuite name="mongodb">
<directory>tests/Mongodb</directory>
<directory>tests/MongoDB</directory>
</testsuite>

<testsuite name="mysql">
<directory>tests/Mysql</directory>
<directory>tests/MySQL</directory>
</testsuite>

<testsuite name="opensearch">
Expand Down
2 changes: 0 additions & 2 deletions tests/Common/FilterStorageTestBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ final public static function debugProvider(): \Generator
self::document(key: 'key4', translatedBool: ['de' => false]),
])
];

//
}

/**
Expand Down

0 comments on commit f7ab170

Please sign in to comment.