mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
5b4f0eafcc
* configure logging * set mcp output logging also * fix type check errors * fix type check * rename Permalink schema type * fix type errors * add typechecks to ci workflow * pytest coverage setup * add tests for status cli * sync tests coverage * watch_service test coverage * tests for tool_utils.py * clean up imports * file_utils coverage * markdown plugins coverage * 99% test coverage * more test coverage, remove ObservationCategory * more tool coverage * fix type-check * format, upgrade deps --------- Co-authored-by: phernandez <phernandez@basicmachines.co>
20 lines
329 B
Python
20 lines
329 B
Python
"""Test file for experimenting with edit_file."""
|
|
|
|
|
|
def function_one():
|
|
"""First test function."""
|
|
print("Hello from function one")
|
|
|
|
# Some code here
|
|
x = 1 + 2
|
|
return x
|
|
|
|
|
|
def function_two():
|
|
"""Second test function."""
|
|
print("Hello from function two")
|
|
|
|
# Some more code
|
|
y = 3 * 4
|
|
return y
|