-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable problematic example #10642
Disable problematic example #10642
Conversation
I don't think this PR does what it says it does. |
Unless I am greatly mistaken, the To actually disable the test, you need to do the change elsewhere: diff --git a/test/Base_Tests/src/Runtime/Managed_Resource_Spec.enso b/test/Base_Tests/src/Runtime/Managed_Resource_Spec.enso
--- a/test/Base_Tests/src/Runtime/Managed_Resource_Spec.enso (revision a4259d31e0ea025aae4e50bbc8533f07ee536708)
+++ b/test/Base_Tests/src/Runtime/Managed_Resource_Spec.enso (date 1721744396649)
@@ -58,7 +58,7 @@
r_3 = Panic.recover Any <| Managed_Resource.bracket 42 (_-> Nothing) (_-> Panic.throw "action")
r_3.catch . should_equal "action"
- group_builder.specify "allocate lots of resources at once" <|
+ group_builder.specify "allocate lots of resources at once" pending=(if Environment.get "CI" . is_nothing . not then "GC Example is marked as pending as it was causing problems on the CI.") <|
remaining = GC_Example.perform_test 100000 (_->Nothing)
remaining . should_equal 0
(additionally we can do it conditionally on the |
Ah, wasn't aware this was executed directly. |
(cherry picked from commit 256a01a)
Some jobs appear to be stuck because of it.