Skip to content

Commit

Permalink
RATEST-193: Add windows execution configuration to support devs using…
Browse files Browse the repository at this point in the history
… windows os (#74)
  • Loading branch information
kdaud committed Aug 16, 2021
1 parent cdec410 commit 9455ddc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,19 @@
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-windows-chromedriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/chromedriver/windows/chromedriver.exe" perm="755" />
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-mac-firefoxdriver-executable</id>
<phase>process-test-classes</phase>
Expand All @@ -108,6 +121,19 @@
<goal>run</goal>
</goals>
</execution>
<execution>
<id>make-windows-firefoxdriver-executable</id>
<phase>process-test-classes</phase>
<configuration>
<target>
<chmod file="target/test-classes/firefoxdriver/windows/geckodriver.exe" perm="755"/>
</target>
<failOnError>false</failOnError>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
Expand Down

0 comments on commit 9455ddc

Please sign in to comment.