diff --git a/.travis.yml b/.travis.yml index b165245..75b1e25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,8 +32,7 @@ env: jobs: allow_failures: # ** pyqtads is not available on PyPI, so this cannot succeed: - - name: "Python 3.8 - PIP" - - name: "Python 3.9" + - name: "Python - PIP" import: - pcdshub/pcds-ci-helpers:travis/shared_configs/setup-env-ui.yml diff --git a/lucid/launcher.py b/lucid/launcher.py index 07f16c2..f3f0c14 100644 --- a/lucid/launcher.py +++ b/lucid/launcher.py @@ -96,7 +96,9 @@ def __init__(self, *args, beamline, group_keys, callbacks, **kwargs): def _load_from_happi(self, row_group_key, col_group_key): '''Fill with Data from Happi''' cli = lucid.utils.get_happi_client() - results = cli.search(beamline=self.beamline) or [] + results = (cli.search(beamline=self.beamline, + active=True) + or []) dev_groups = collections.defaultdict(list)