Skip to content

Commit

Permalink
unit_tests: restored timeout; scripts: assets: logging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger committed Oct 25, 2023
1 parent e2fed94 commit fdfdb77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ def manifest(self):
for record in only_in_new:
self.logger.debug(f"Only in new: {record}")
if any((only_in_old, changed, only_in_new)):
self.logger.warning(
f"Manifest is updated ({len(only_in_new)} new, {len(only_in_old)} removed, {len(changed)} changed). Updating"
self.logger.info(
f"Manifest updated ({len(only_in_new)} new, {len(only_in_old)} removed, {len(changed)} changed)"
)
new_manifest.save(manifest_file)
else:
Expand Down
2 changes: 1 addition & 1 deletion scripts/testing/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
logging.error("Flipper not found!")
sys.exit(1)

with serial.Serial(flp_serial, timeout=300) as flipper:
with serial.Serial(flp_serial, timeout=150) as flipper:
logging.info(f"Found Flipper at {flp_serial}")
flipper.baudrate = 230400
flipper.flushOutput()
Expand Down

0 comments on commit fdfdb77

Please sign in to comment.