file creation from within file before server :)

This commit is contained in:
Silen Naihin
2023-06-24 12:15:53 -04:00
parent 8c44b9eddf
commit 22458a04e8
4 changed files with 12 additions and 2 deletions

View File

@@ -8,6 +8,14 @@ data = ChallengeData.deserialize(
)
@pytest.fixture(scope="module", autouse=True)
def setup_module(workspace):
if data.ground.should_contain:
Challenge.write_to_file(
workspace, data.ground.files[0], "this is how we're doing"
)
class TestReadFile(Challenge):
"""Testing if LLM can read a file"""