Skip to content

Commit

Permalink
2.5.4: rm strictNotNil
Browse files Browse the repository at this point in the history
  • Loading branch information
disruptek committed May 23, 2021
1 parent a42af67 commit a88fbad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion balls.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "2.5.3"
version = "2.5.4"
author = "disruptek"
description = "a unittest framework with balls 🔴🟡🟢"
license = "MIT"
Expand Down
10 changes: 7 additions & 3 deletions balls/runner.nim
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,13 @@ when (NimMajor, NimMinor) >= (1, 2):
opt[danger].add "--panics:on"
opt[danger].add "--exceptions:goto"
opt[danger].add "--experimental:strictFuncs"
if ci:
# notnil is too slow to run locally
opt[danger].add "--experimental:strictNotNil"
when false:
#
# removed because if i cannot make it work, i can hardly expect you to
#
if ci:
# notnil is too slow to run locally
opt[danger].add "--experimental:strictNotNil"
else:
gc.incl refc
# options common to all profiles
Expand Down

0 comments on commit a88fbad

Please sign in to comment.