Skip to content

Commit

Permalink
Skip performance tests on Windows
Browse files Browse the repository at this point in the history
For some reason they don't work
  • Loading branch information
yrodiere committed Sep 20, 2023
1 parent 56b8adf commit 9935d28
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions integrationtest/performance/backend/elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,19 @@
</plugins>
</build>

<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<!-- For some reason these performance tests don't seem to work on Windows -->
<test.elasticsearch.skip>true</test.elasticsearch.skip>
</properties>
</profile>
</profiles>

</project>
15 changes: 15 additions & 0 deletions integrationtest/performance/backend/lucene/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,19 @@
</plugins>
</build>

<profiles>
<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<!-- For some reason these performance tests don't seem to work on Windows -->
<test.lucene.skip>true</test.lucene.skip>
</properties>
</profile>
</profiles>

</project>

0 comments on commit 9935d28

Please sign in to comment.