From 3ff510e28b7180931aaa79825fdbc8c002bd55b9 Mon Sep 17 00:00:00 2001 From: tangkong Date: Thu, 24 Mar 2022 13:47:52 -0700 Subject: [PATCH 1/3] BUG: only list active devices on launch --- lucid/launcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) From d032a6feda00c50964e6f74995814ed59bd7af41 Mon Sep 17 00:00:00 2001 From: tangkong Date: Thu, 24 Mar 2022 14:51:45 -0700 Subject: [PATCH 2/3] BLD: allow python 3.9 pip failure --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b165245..5ec9e1b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ jobs: allow_failures: # ** pyqtads is not available on PyPI, so this cannot succeed: - name: "Python 3.8 - PIP" - - name: "Python 3.9" + - name: "Python 3.9 - PIP" import: - pcdshub/pcds-ci-helpers:travis/shared_configs/setup-env-ui.yml From 0c108ac0ab88279e3699be7bd9edaa912e3f4596 Mon Sep 17 00:00:00 2001 From: tangkong Date: Thu, 24 Mar 2022 15:06:09 -0700 Subject: [PATCH 3/3] BLD: allow python pip failure again --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5ec9e1b..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 - PIP" + - name: "Python - PIP" import: - pcdshub/pcds-ci-helpers:travis/shared_configs/setup-env-ui.yml