alfraser commited on
Commit
5ea3cc9
·
1 Parent(s): f10615b

Added button to force reload of trace files

Browse files
Files changed (1) hide show
  1. pages/040_Test_Reporter.py +4 -0
pages/040_Test_Reporter.py CHANGED
@@ -50,6 +50,10 @@ if st_setup('LLM Arch'):
50
  with summary:
51
  st.write("# Test Reporter")
52
  TestGroup.load_all()
 
 
 
 
53
  selector, display = st.columns([2, 3])
54
 
55
  with selector:
 
50
  with summary:
51
  st.write("# Test Reporter")
52
  TestGroup.load_all()
53
+ if st.button("Reload traces"):
54
+ TestGroup.load_all(True)
55
+ st.rerun()
56
+
57
  selector, display = st.columns([2, 3])
58
 
59
  with selector: