Skip to content

Commit

Permalink
Fix test filters for Windows
Browse files Browse the repository at this point in the history
The documentation states that we should only get forward slashes here,
but that doesn't seem to be the case.
  • Loading branch information
yrodiere committed Sep 20, 2023
1 parent 9935d28 commit 8071280
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
</dependenciesToScan>
<includes>
<!-- Include all tests from this module -->
<include>%regex[org/hibernate/search/integrationtest/mapper/orm/coordination/outboxpolling/.*IT\.class]</include>
<include>%regex[org[/\\]hibernate[/\\]search[/\\]integrationtest[/\\]mapper[/\\]orm[/\\]coordination[/\\]outboxpolling[/\\].*IT\.class]</include>
<!-- Include tests from integrationtest-mapper-orm that are related to automatic indexing -->
<include>%regex[org/hibernate/search/integrationtest/mapper/orm/automaticindexing/.*IT\.class]</include>
<include>%regex[org[/\\]hibernate[/\\]search[/\\]integrationtest[/\\]mapper[/\\]orm[/\\]automaticindexing[/\\].*IT\.class]</include>
</includes>
<excludes>
<!-- Exclude tests from integrationtest-mapper-orm that just cannot work with the outbox polling strategy: -->
Expand Down

0 comments on commit 8071280

Please sign in to comment.