diff --git a/compiler/damlc/BUILD.bazel b/compiler/damlc/BUILD.bazel index d1a5a56317..b40a91ff43 100644 --- a/compiler/damlc/BUILD.bazel +++ b/compiler/damlc/BUILD.bazel @@ -335,18 +335,18 @@ genrule( visibility = ["//visibility:public"], ) -#daml_doc_test( -# name = "daml-stdlib-doctest", -# package_name = "daml-stdlib", -# srcs = ["//compiler/damlc/daml-stdlib-src"], -# flags = [ -# "--no-dflags-check", -# "--import-source=no", -# ], -# ignored_srcs = [ -# "LibraryModules.daml", -# "DA/Experimental/*.daml", -# "DA/Time/Types.daml", -# "DA/Action/State/Type.daml", -# ], -#) +daml_doc_test( + name = "daml-stdlib-doctest", + package_name = "daml-stdlib", + srcs = ["//compiler/damlc/daml-stdlib-src"], + flags = [ + "--no-dflags-check", + "--import-source=no", + ], + ignored_srcs = [ + "LibraryModules.daml", + "DA/Experimental/*.daml", + "DA/Time/Types.daml", + "DA/Action/State/Type.daml", + ], +) if not is_windows else None diff --git a/daml-script/export/integration-tests/reproduces-transactions/BUILD.bazel b/daml-script/export/integration-tests/reproduces-transactions/BUILD.bazel index 94dadc81ed..d2acc1cc2d 100644 --- a/daml-script/export/integration-tests/reproduces-transactions/BUILD.bazel +++ b/daml-script/export/integration-tests/reproduces-transactions/BUILD.bazel @@ -6,6 +6,7 @@ load( "da_scala_test", "lf_scalacopts_stricter", ) +load("@os_info//:os_info.bzl", "is_windows") da_scala_test( name = "test", @@ -54,4 +55,4 @@ da_scala_test( "@maven//:io_netty_netty_handler", "@maven//:org_scalatest_scalatest_compatible", ], -) +) if not is_windows else None diff --git a/daml-script/export/integration-tests/reproduces-transactions/test/scala/com/daml/script/export/ReproducesTransactions.scala b/daml-script/export/integration-tests/reproduces-transactions/test/scala/com/daml/script/export/ReproducesTransactions.scala index 55f9326cd4..c154322213 100644 --- a/daml-script/export/integration-tests/reproduces-transactions/test/scala/com/daml/script/export/ReproducesTransactions.scala +++ b/daml-script/export/integration-tests/reproduces-transactions/test/scala/com/daml/script/export/ReproducesTransactions.scala @@ -289,11 +289,11 @@ final class ReproducesTransactions "Generated export for IOU transfer compiles" - { - s"offset 0 - empty ACS" ignore { testOffset(2, 0)(testIou) } + s"offset 0 - empty ACS" in { testOffset(2, 0)(testIou) } - s"offset 2 - skip split" ignore { testOffset(2, 2)(testIou) } + s"offset 2 - skip split" in { testOffset(2, 2)(testIou) } - s"offset 4 - no trees" ignore { testOffset(2, 4)(testIou) } + s"offset 4 - no trees" in { testOffset(2, 4)(testIou) } }