Skip to content

Commit

Permalink
issue #1352 Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
wajda committed Jul 11, 2024
1 parent 7b59867 commit 313e946
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
3 changes: 1 addition & 2 deletions arangodb-foxx-services/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ module.exports = {
4
],
'linebreak-style': [
'error',
// eslint-disable-next-line no-undef
process.platform === 'win32' ? 'warn' : 'error',
process.platform === 'win32' ? 'windows' : 'unix'
],
quotes: [
Expand Down
20 changes: 20 additions & 0 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,24 @@
</dependency>
</dependencies>

<profiles>
<profile>
<id>skip-it-tests</id>
<activation>
<!--
Integration-tests module depends on Testcontainers,
that are currently not supported on Windows.
See: https://github.com/testcontainers/testcontainers-java/issues/2960
Therefore we skip integration tests on Windows.
-->
<os>
<family>windows</family>
</os>
</activation>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>

</project>

0 comments on commit 313e946

Please sign in to comment.