Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Success Markers CLI #9824

Merged
merged 20 commits into from
Nov 1, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix tests now event IDs are supported
  • Loading branch information
usc-m committed Oct 28, 2021
commit bf4030bca4904d7e991498d3b56a00e1d6765840
4 changes: 2 additions & 2 deletions tests/cli/test_rasa_evaluate_markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ def test_markers_cli_results_save_correctly(
senders.add(row["sender_id"])
if row["marker_name"] == "marker1":
assert row["dialogue_id"] == "0"
# assert row["event_id"] == "1"
assert int(row["event_id"]) >= 2
assert row["num_preceding_user_turns"] == "0"

if row["marker_name"] == "marker2":
assert row["dialogue_id"] == "1"
# assert row["event_id"] == "2"
assert int(row["event_id"]) >= 3
assert row["num_preceding_user_turns"] == "1"

assert len(senders) == 5