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
10
10
* @since 04.10.2022
11
11
*/
12
12
// 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 " ) })
14
14
class DockerAutoRestartKitTest extends AbstractKitTest {
15
15
16
16
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
10
10
* @since 04.10.2022
11
11
*/
12
12
// 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 " ) })
14
14
class DockerExclusiveExecutionKitTest extends AbstractKitTest {
15
15
16
16
def " Check exclusive execution" () {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import spock.lang.IgnoreIf
10
10
* @since 07.10.2022
11
11
*/
12
12
// 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 " ) })
14
14
class DockerMultiModuleKitTest extends AbstractKitTest {
15
15
16
16
def " Check modules use different python" () {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import spock.lang.IgnoreIf
11
11
* @since 21.09.2022
12
12
*/
13
13
// 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 " ) })
15
15
class DockerRunKitTest extends AbstractKitTest {
16
16
17
17
def " Check simple execution" () {
You can’t perform that action at this time.
0 commit comments