File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/test/groovy/ru/vyarus/gradle/plugin/python/docker Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import spock.lang.IgnoreIf
1010 * @since 04.10.2022
1111 */
1212// testcontainers doesn't work on windows server https://github.com/testcontainers/testcontainers-java/issues/2960
13- @IgnoreIf ({ env.containsKey( ' APPVEYOR ' ) })
13+ @IgnoreIf ({ System .getProperty( " os.name " ).toLowerCase().contains( " windows " ) })
1414class DockerAutoRestartKitTest extends AbstractKitTest {
1515
1616 def " Check auto container restart due to changed working dir" () {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import spock.lang.IgnoreIf
1010 * @since 04.10.2022
1111 */
1212// testcontainers doesn't work on windows server https://github.com/testcontainers/testcontainers-java/issues/2960
13- @IgnoreIf ({ env.containsKey( ' APPVEYOR ' ) })
13+ @IgnoreIf ({ System .getProperty( " os.name " ).toLowerCase().contains( " windows " ) })
1414class DockerExclusiveExecutionKitTest extends AbstractKitTest {
1515
1616 def " Check exclusive execution" () {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import spock.lang.IgnoreIf
1010 * @since 07.10.2022
1111 */
1212// testcontainers doesn't work on windows server https://github.com/testcontainers/testcontainers-java/issues/2960
13- @IgnoreIf ({ env.containsKey( ' APPVEYOR ' ) })
13+ @IgnoreIf ({ System .getProperty( " os.name " ).toLowerCase().contains( " windows " ) })
1414class DockerMultiModuleKitTest extends AbstractKitTest {
1515
1616 def " Check modules use different python" () {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import spock.lang.IgnoreIf
1111 * @since 21.09.2022
1212 */
1313// testcontainers doesn't work on windows server https://github.com/testcontainers/testcontainers-java/issues/2960
14- @IgnoreIf ({ env.containsKey( ' APPVEYOR ' ) })
14+ @IgnoreIf ({ System .getProperty( " os.name " ).toLowerCase().contains( " windows " ) })
1515class DockerRunKitTest extends AbstractKitTest {
1616
1717 def " Check simple execution" () {
You can’t perform that action at this time.
0 commit comments