LLNL / ATS

ATS - Automated Testing System - is an open-source, Python-based tool for automating the running of tests of an application across a broad range of high performance computers.
BSD 3-Clause "New" or "Revised" License
7 stars 5 forks source link

undo update not meant for configuration.py options #77

Closed davidbloss closed 2 years ago

davidbloss commented 2 years ago

While broadly replacing AttributeDict with a plain dictionary I broadly replaced options.something with options["something"] throughout the code.

Replacing configuration.options.something with configuration.options["something"] however was unintended. This branch reverts the configuration.options related changes.

davidbloss commented 2 years ago

While broadly replacing AttributeDict with a plain dictionary I broadly replaced options.something with options["something"] throughout the code.

Replacing configuration.options.something with configuration.options["something"] however was unintended. This branch reverts the configuration.options related changes.

This initial hunch was incorrect and was reverted back. Still, two "options" related updates in configuration.py did fix an underlying problem.