We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c798e0 commit 67d1511Copy full SHA for 67d1511
.github/workflows/main.yml
@@ -396,7 +396,7 @@ jobs:
396
name: UI html visual tests
397
runs-on: ubuntu-22.04
398
needs: changed_files
399
- if: ${{ needs.changed_files.outputs.evidently_any_modified == 'true' }}
+ if: ${{ needs.changed_files.outputs.evidently_any_modified == 'true' && vars.ENABLE_VISUAL_TESTS == 'true' }}
400
401
steps:
402
- name: ⬇️ Checkout repo
examples/cookbook/guardrails.ipynb
@@ -28,7 +28,6 @@
28
"def my_validator(data: str) -> bool:\n",
29
" return len(data) <= 10\n",
30
"\n",
31
- "\n",
32
"def my_validator_2(data: str) -> bool:\n",
33
" return len(data) >= 10"
34
]
0 commit comments