Skip to content

Commit

Permalink
Add --disable-gil test flag to Windows NoGIL builder (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
itamaro committed Jan 22, 2024
1 parent 505f3d6 commit 8906549
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,8 @@ class Windows64ReleaseBuild(Windows64Build):

class Windows64NoGilBuild(Windows64Build):
buildersuffix = '.x64.nogil'
buildFlags = ["-p", "x64", "--disable-gil"]
buildFlags = Windows64Build.buildFlags + ["--disable-gil"]
testFlags = Windows64Build.testFlags + ["--disable-gil"]
factory_tags = ["win64", "nogil"]


Expand Down

0 comments on commit 8906549

Please sign in to comment.