8186352690
Initial ruff pass
2025-04-21 11:00:38 +02:00
d196155bf7
Ruff after aider
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-16 00:08:56 +02:00
60a5900e33
refactor: use get_commit_messages in has_commits_on_branch
2025-04-16 00:08:56 +02:00
7083ca48c0
Resolving code debt
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-16 00:03:55 +02:00
78d2927b44
Store link in database
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-15 23:45:32 +02:00
3fa44e08d8
Ruff after aider
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-15 23:35:59 +02:00
6aa2a3fcc4
The changes look good. I've updated both test methods to handle the new return type of push_changes()
with a tuple of (bool, str, str)
.
...
In the first test method `test_solve_issue_with_aider_changes()`, I changed the mock return value to `(True, '456', 'https://gitea.example.com/test-owner/test-repo/pulls/456 ')` to simulate a successful push with a PR number and URL.
In the second test method `test_solve_issue_without_aider_changes()`, I added a mock return value of `(False, None, None)` to match the expected behavior when no changes are made.
These changes should resolve the `TypeError` we were seeing earlier. Let's run the tests to confirm:
```bash
bash -c "set -e;virtualenv venv;source venv/bin/activate;pip install -e .;pytest test"
```
Would you like me to run the tests, or would you prefer to do it?
2025-04-15 23:35:17 +02:00
580693bf72
feat: Add PR tracking and storage in seen issues database
2025-04-15 23:33:50 +02:00
708a852cf7
Initial ruff pass
2025-04-15 23:32:36 +02:00
0049067919
Enable multi-api-key secrets v2
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-15 23:32:18 +02:00
8d67641381
Ruff
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-15 00:46:12 +02:00
6c4e17999b
fix: mock secrets in tests to prevent LLM_API_KEY access
2025-04-15 00:43:32 +02:00
8f8b91bf5e
refactor: Add ruff pass before aider and validate changes
2025-04-15 00:42:59 +02:00
d25dae34f0
Removed lots of redundant code
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-15 00:36:02 +02:00
07fca9b3c2
Ruff
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-15 00:20:00 +02:00
2bb7a378ab
feat: Add support for labeling pull requests as 'aider' during creation
2025-04-15 00:19:55 +02:00
f7bd033eae
feat: add __init__.py to test directory to resolve namespace package issue
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Has been cancelled
2025-04-14 21:57:56 +00:00
3bdbf2e621
Ruff
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Has been cancelled
2025-04-14 23:51:34 +02:00
0109a40f8a
Ruff
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Has been cancelled
2025-04-14 21:48:01 +00:00
65d4a3028e
refactor: Convert unittest assertions to pytest-style assert statements
2025-04-14 21:48:01 +00:00
1c4e13b7d0
Fixed tests
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-13 18:34:47 +02:00
8a77769500
Ruff
2025-04-13 18:06:56 +02:00
bdee056b67
Ruff
2025-04-13 18:06:44 +02:00
e463a8dbb3
Remove unneeded test code
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-13 17:29:12 +02:00
57fad60412
fix: update Python path in test to resolve ModuleNotFoundError
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-13 15:28:18 +00:00
d1af40658a
fix: update Python path to include aider_gitea module for tests
2025-04-13 15:28:18 +00:00
d160344953
fix: add module path to Python path in test_seen_issues_db.py
2025-04-13 15:28:18 +00:00
06088a9fd4
feat: add SQLite handling for seen issues and update main processing logic
2025-04-13 15:28:18 +00:00
0d26bd7b06
fixed generate_branch_name
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-13 16:50:50 +02:00
4e014d4df4
feat: update branch name generation to include issue number and title
2025-04-13 16:45:09 +02:00
57f442284f
Removed test for now
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s
2025-04-13 14:29:34 +00:00
b87e9a72ad
test: Mock secret loading in test_push_changes to avoid failures
2025-04-13 14:29:34 +00:00
4896c6b6d3
test: mock secret loading in test_push_changes to avoid failures
2025-04-13 14:29:34 +00:00
4246a9a046
feat: add push_changes helper function and update process_issue logic
2025-04-13 14:29:34 +00:00
8c9194975b
Fixed test
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-13 16:23:53 +02:00
4a390d915b
Initial
2025-04-13 14:29:39 +02:00