no linter
This commit is contained in:
parent
2ee44c4a55
commit
7c1246f9dd
1 changed files with 11 additions and 9 deletions
|
|
@ -242,17 +242,19 @@ class AgentOrchestrator:
|
|||
self._git_pull()
|
||||
|
||||
# Run linter
|
||||
print("\n🔍 Running linter...")
|
||||
if not self._run_lint():
|
||||
print("⚠️ Linter found issues")
|
||||
# Don't fail, cursor can fix in retry
|
||||
return False
|
||||
print("🔍 Linter is disabled for now")
|
||||
# print("\n🔍 Running linter...")
|
||||
# if not self._run_lint():
|
||||
# print("⚠️ Linter found issues")
|
||||
# # Don't fail, cursor can fix in retry
|
||||
# return False
|
||||
|
||||
# Run tests
|
||||
print("\n🧪 Running tests...")
|
||||
if not self._run_tests():
|
||||
print("❌ Tests failed")
|
||||
return False
|
||||
print("Tests are disabled for now")
|
||||
# print("\n🧪 Running tests...")
|
||||
# if not self._run_tests():
|
||||
# print("❌ Tests failed")
|
||||
# return False
|
||||
|
||||
# Commit changes
|
||||
print("\n💾 Committing changes...")
|
||||
|
|
|
|||
Loading…
Reference in a new issue