Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(abr-testing): Update simulate #16929

Merged
merged 7 commits into from
Nov 21, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_files() -> Tuple[Dict[str, Dict[str, Union[str, Path]]], List[Path]]:
labware_defs = []
for root, directories, _ in os.walk(root_dir):
for directory in directories:
if directory == "active_protocols":
if directory not in exclude:
active_dir = os.path.join(root, directory)
for file in os.listdir(
active_dir
Expand Down Expand Up @@ -100,7 +100,6 @@ def get_files() -> Tuple[Dict[str, Dict[str, Union[str, Path]]], List[Path]]:
exclude = [
"__init__.py",
"helpers.py",
"shared_vars_and_funcs.py",
]
print("Simulating Protocols")
file_dict, labware_defs = get_files()
Expand Down
Loading