[Sweep GHA Fix] The GitHub Actions run failed with... #44
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request includes several changes to the codebase. The changes are as follows:
.github/labeler.yml
file to add the 'label1' to any changes within the 'example' folder or any subfolders..github/workflows/test.yml
file to replace the 'make test' command with 'poetry run pytest' for the 'core' test type, and 'poetry run pytest-extended' for other test types..github/workflows/testing.yml
file to replace the 'make test' command with 'poetry run pytest' for the 'core' test type, and 'make extended_tests' for other test types. Also added the '--cov' flag to the 'pytest' command.CONTRIBUTING.md
file to include additional requirements for contributing a new feature, such as providing parameter descriptions and a Google Colab for testing.CONTRIBUTING.md
file to remove the code quality instructions.docs/old-docs/design/CLEAN_CODE.md
file to add guidelines for measuring software quality based on clean code principles.docs/old-docs/design/DESIGN.md
file to add principles for designing highly usable, functional, reliable, fast, and scalable code.docs/old-docs/design/DESIGN_PHILOSOPHY.md
file to add principles for designing highly usable, functional, reliable, fast, and scalable code.docs/old-docs/design/GOLDEN_METRIC.md
file to add guidelines for measuring software quality based on clean code principles.docs/old-docs/design/abstraction.py
file to add abstract methods and classes.pyproject.toml
file to add themypy
dependency.swarms/agents/base.py
file to add areset
method to theAgent
class and update the method signatures.Summary
abstraction.py
file.mypy
dependency to thepyproject.toml
file.Agent
class in thebase.py
file with areset
method and updated method signatures.