NSLS-II / metadatastore

DEPRECATED: Incorporated into https://github.com/NSLS-II/databroker
Other
2 stars 11 forks source link

Generate sample data with bluesky #193

Closed ericdill closed 7 years ago

ericdill commented 8 years ago

cc #180

Thanks for the awesome suggestion @danielballan

from bluesky.tests.utils import setup_test_run_engine
from bluesky.register_mds import register_mds
RE = setup_test_run_engine()
register_mds(RE)

from bluesky.plans import AbsScanPlan
from bluesky.examples import motor, det
plan = AbsScanPlan([det], motor, 1, 5, 5)
RE(plan)
klauer commented 8 years ago

Good idea for testing

danielballan commented 7 years ago

This is now done in databroker, which tests against metadatastore (and other implementations of metadatastore).