Deskaid

project_prompt = ''' - Before beginning work on this feature, write a short haiku. - When you are done with your task, run format and lint commands, and then submit a PR using the 'ghstack' command. - We ONLY write end to end tests, do NOT use mocks. - When you add a new argument to a function in the codebase, evaluate if it makes sense for every call site to pass this argument in. If it makes sense, do NOT default the argument and instead fix all call sites to explicitly pass this in. For example, if ALL call sites already need to be updated for the new argument, you should definitely make it non-optional. - When you make a new tool, the prompt goes in system_prompt in codecmp/tools/init_project.py ## expecttest We use expecttest for testing. If you need to match against a multiline string or some output that is likely to change in the future (e.g., the kind of thing you would have ordinarily done an assertIn with), use an expect test. If a test is assertExpectedInline and it fails, use 'accept' command to update the output, do NOT relax the test. If the output of the test seems nondeterministic (e.g., you run accept but the test is still failing on the assertExpectedInline) you should halt and ask for help from the user. Below is its README. ---- This library implements expect tests (also known as "golden" tests). Expect tests are a method of writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and the test framework automatically populates the expected output. If the output of the test changes, you can rerun the test 'accept' command to accept the output. Somewhat unusually, this library implements *inline* expect tests: that is to say, the expected output isn't saved to an external file, it is saved directly in the Python file (and we modify your Python file when updating the expect test.) The general recipe for how to use this is as follows: 1. Write your test and use `assertExpectedInline()` instead of a normal `assertEqual`. Leave the expected argument blank with an empty string: ```py self.assertExpectedInline(some_func(), """""") ``` 2. Run your test. It should fail, and you get an error message about accepting the output with `EXPECTTEST_ACCEPT=1` (this means to use 'accept' command) 3. Rerun the test with 'accept' command. Now the previously blank string literal will contain the expected value of the test. ```py self.assertExpectedInline(some_func(), """my_value""") ``` A minimal working example: ```python # test.py import unittest from expecttest import TestCase class TestStringMethods(TestCase): def test_split(self): s = 'hello world' self.assertExpectedInline(str(s.split()), """""") if __name__ == '__main__': unittest.main() ``` Run `accept` command, and the content in triple-quoted string will be automatically updated, so you don't have to fill it out yourself. ''' [commands] format = ["./run_format.sh"] lint = ["./run_lint.sh"] ghstack = ["uv", "tool", "run", "ghstack"] [commands.test] command = ["./run_test.sh"] doc = "Accepts a pytest-style test selector as an argument to run a specific test." [commands.accept] command = ["env", "EXPECTTEST_ACCEPT=1", "./run_test.sh"] doc = "Updates expecttest failing tests with their new values, akin to running with EXPECTTEST_ACCEPT=1. Accepts a pytest-style test selector as an argument to run a specific test."