Spaces:
Sleeping
Sleeping
docs: tag build small submission
Browse filesCo-authored-by: Codex <noreply@openai.com>
- tests/test_gradio_app.py +10 -0
tests/test_gradio_app.py
CHANGED
|
@@ -677,12 +677,22 @@ def test_module_intro_copy_replaces_static_status_strips():
|
|
| 677 |
assert "def _module_status_html" not in source
|
| 678 |
assert "d2-module-status" not in source
|
| 679 |
assert "def _module_intro_html" in source
|
|
|
|
| 680 |
assert "Draft recommends heroes" in source
|
| 681 |
assert "Meta searches patch" in source
|
| 682 |
assert "Predictor estimates Radiant win chance" in source
|
| 683 |
assert "Builds summarizes observed hero item timings" in source
|
| 684 |
assert "Draft also generates compact scouting cards" in source
|
| 685 |
assert "Data lists the normalized Parquet artifacts" in source
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 686 |
|
| 687 |
|
| 688 |
def test_tuned_model_hides_duplicate_output_status_tracker():
|
|
|
|
| 677 |
assert "def _module_status_html" not in source
|
| 678 |
assert "d2-module-status" not in source
|
| 679 |
assert "def _module_intro_html" in source
|
| 680 |
+
assert "def _module_guide_html" in source
|
| 681 |
assert "Draft recommends heroes" in source
|
| 682 |
assert "Meta searches patch" in source
|
| 683 |
assert "Predictor estimates Radiant win chance" in source
|
| 684 |
assert "Builds summarizes observed hero item timings" in source
|
| 685 |
assert "Draft also generates compact scouting cards" in source
|
| 686 |
assert "Data lists the normalized Parquet artifacts" in source
|
| 687 |
+
for title in [
|
| 688 |
+
"New here? How to use Ask",
|
| 689 |
+
"New here? How to use Draft",
|
| 690 |
+
"New here? How to use Meta",
|
| 691 |
+
"New here? How to use Builds",
|
| 692 |
+
"New here? How to use Predictor",
|
| 693 |
+
"New here? How to use Data",
|
| 694 |
+
]:
|
| 695 |
+
assert title in source
|
| 696 |
|
| 697 |
|
| 698 |
def test_tuned_model_hides_duplicate_output_status_tracker():
|