We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da2b9b1 commit 428b22dCopy full SHA for 428b22d
1 file changed
tests/kit/bluesky.py
@@ -18,5 +18,16 @@ def test_folderinfo():
18
assert fi2.plan == "grid_scan_wp"
19
20
21
+def test_filter():
22
+ name1 = "2025-10-27 52433 count 2 beam PL spot2 post d7f183b5"
23
+ name2 = "2025-10-27 54622 grid_scan_wp spot 3 spectral 6a45457c"
24
+
25
+ gridscans = [x for x in wt.kit.bluesky.filter_bluesky([name1, name2], plan="grid_scan_wp")]
26
+ assert len(gridscans) == 1
27
+ assert str(gridscans[0]) == name2
28
29
30
if __name__ == "__main__":
31
test_folderinfo()
32
+ test_filter()
33
0 commit comments