We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4acf348 commit 232d26cCopy full SHA for 232d26c
2 files changed
.github/workflows/python.yml
@@ -91,10 +91,11 @@ jobs:
91
fail-fast: false
92
matrix:
93
python-version:
94
- - "pypy-3.9"
95
- - "pypy-3.10"
96
- - "3.9"
97
- - "3.10"
+ # disabled due to librt is not available on this pypy version
+ # - "pypy-3.9"
+ # - "pypy-3.10"
+ # - "3.9"
98
+ # - "3.10"
99
- "3.11"
100
- "3.12"
101
steps:
optimizely/decision_service.py
@@ -907,7 +907,7 @@ def get_variation_for_holdout(
907
908
# Create Decision for holdout - pass holdout dict as experiment, source is HOLDOUT
909
holdout_decision: Decision = Decision(
910
- experiment=None,
+ experiment=holdout, # type: ignore[arg-type]
911
variation=variation,
912
source=enums.DecisionSources.HOLDOUT,
913
cmab_uuid=None
0 commit comments