File tree 1 file changed +3
-1
lines changed
rules_haskell_tests/tests/integration_testing
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ def rules_haskell_integration_test(
16
16
workspace_path ,
17
17
srcs ,
18
18
deps = [],
19
+ env = {},
19
20
bindist_bazel_versions = SUPPORTED_BAZEL_VERSIONS ,
20
21
nixpkgs_bazel_packages = SUPPORTED_NIXPKGS_BAZEL_PACKAGES ,
21
22
** kwargs ):
@@ -33,7 +34,7 @@ def rules_haskell_integration_test(
33
34
name = "%s_nixpkgs" % name ,
34
35
srcs = srcs ,
35
36
deps = deps ,
36
- env = {
37
+ env = env | {
37
38
"NIXPKGS" : "1" ,
38
39
},
39
40
bazel_binaries = nixpkgs_bazel_binaries ,
@@ -50,6 +51,7 @@ def rules_haskell_integration_test(
50
51
name = "%s_bindist" % name ,
51
52
srcs = srcs ,
52
53
deps = deps ,
54
+ env = env ,
53
55
bazel_binaries = bindist_bazel_binaries ,
54
56
workspace_path = workspace_path ,
55
57
rule_files = ["@rules_haskell//:distribution" ],
You can’t perform that action at this time.
0 commit comments