-
-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hotfix using datetime.now().strftime() to format the time on spreadsh… #710
base: master
Are you sure you want to change the base?
Conversation
…eet_swarm.py adding unit test for spreadsheet_swarm fixing issues with linting tests ruff more linting tests linting fixes and QA on spreadsheet_swarm.py spreadsheet_swarm.py confirmed working on windows in tests with Harshal multi platform spreadsheet_swarm, deps build clusterops from github source spreadsheet and syntax fix to auto_test_eval.py spreadsheet and finance tests confirmed to work align repo with upstream
github_token=os.getenv("GITHUB_API_KEY") | ||
) | ||
|
||
reporter = SwarmsIssueReporter(github_token=os.getenv("GITHUB_API_KEY")) |
Check failure
Code scanning / Pyre
Incompatible parameter type Error test
import asyncio | ||
from typing import Optional, Dict, Any, List, Tuple | ||
from datetime import datetime | ||
from loguru import logger |
Check failure
Code scanning / Pyre
Undefined import Error test
import asyncio | ||
from typing import List, Dict, Any, Optional, Tuple | ||
from datetime import datetime | ||
from loguru import logger |
Check failure
Code scanning / Pyre
Undefined import Error test
# Verify configuration | ||
assert swarm.name == "Test Swarm" | ||
assert swarm.description == "Test Description" | ||
assert len(swarm.agents) == 2 |
Check failure
Code scanning / Pyre
Incompatible parameter type Error test
|
||
# Test empty initialization | ||
empty_swarm = SpreadSheetSwarm() | ||
assert len(empty_swarm.agents) == 0 |
Check failure
Code scanning / Pyre
Incompatible parameter type Error test
swarm = SpreadSheetSwarm(load_path=csv_path) | ||
await swarm._load_from_csv() | ||
|
||
assert len(swarm.agents) == 3 |
Check failure
Code scanning / Pyre
Incompatible parameter type Error test
steps
…eet_swarm.py
adding unit test for spreadsheet_swarm
fixing issues with linting tests ruff
more linting tests
linting fixes and QA on spreadsheet_swarm.py
spreadsheet_swarm.py confirmed working on windows in tests with Harshal
multi platform spreadsheet_swarm, deps build clusterops from github source
spreadsheet and syntax fix to auto_test_eval.py
spreadsheet and finance tests confirmed to work
align repo with upstream
Thank you for contributing to Swarms!
Replace this comment with:
Please make sure your PR is passing linting and testing before submitting. Run
make format
,make lint
andmake test
to check this locally.See contribution guidelines for more information on how to write/run tests, lint, etc:
https://github.com/kyegomez/swarms/blob/master/CONTRIBUTING.md
If you're adding a new integration, please include:
Maintainer responsibilities:
If no one reviews your PR within a few days, feel free to email Kye at [email protected]
See contribution guidelines for more information on how to write/run tests, lint, etc: https://github.com/kyegomez/swarms
📚 Documentation preview 📚: https://swarms--710.org.readthedocs.build/en/710/