mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
Merge branch 'main' into refactor-repo
This commit is contained in:
commit
94a271d522
2 changed files with 7 additions and 4 deletions
|
@ -4,6 +4,9 @@
|
|||
- [pip install aider-chat](#pip-install-aider-chat)
|
||||
- [Provide your OpenAI API key](#provide-your-openai-api-key)
|
||||
- [Install git](#install-git)
|
||||
|
||||
Optional steps:
|
||||
|
||||
- [Install universal ctags (optional)](#install-universal-ctags-optional)
|
||||
- [Add aider to your editor (optional)](#add-aider-to-your-editor-optional)
|
||||
|
||||
|
@ -56,6 +59,9 @@ See the [usage instructions](/#usage) to start coding with aider.
|
|||
|
||||
The rest of the install steps are completely optional.
|
||||
|
||||
---
|
||||
|
||||
|
||||
## Install universal ctags (optional)
|
||||
|
||||
Aider does not require ctags, and will operate just fine without it.
|
||||
|
|
|
@ -25,10 +25,7 @@ class TestCommands(TestCase):
|
|||
|
||||
def tearDown(self):
|
||||
os.chdir(self.original_cwd)
|
||||
try:
|
||||
shutil.rmtree(self.tempdir)
|
||||
except OSError:
|
||||
pass # Ignore errors (Windows)
|
||||
shutil.rmtree(self.tempdir, ignore_errors=True)
|
||||
|
||||
def test_cmd_add(self):
|
||||
# Initialize the Commands and InputOutput objects
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue