-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1614 from voidking/main
chore: θ·ιεε ζ΅θ―
- Loading branch information
Showing
7 changed files
with
93 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Close inactive issues | ||
on: | ||
schedule: | ||
- cron: "5 0 * * *" | ||
|
||
jobs: | ||
close-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: 14 | ||
stale-issue-label: "inactive" | ||
stale-issue-message: "This issue has no activity in the past 30 days. Please comment on the issue if you have anything to add." | ||
close-issue-message: "This issue was closed due to 45 days of inactivity. If you feel this issue is still relevant, please reopen the issue to continue the discussion." | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
[pytest] | ||
testpaths = tests | ||
addopts = | ||
--continue-on-collection-errors | ||
--doctest-modules | ||
--cov=./metagpt/ | ||
--cov-report=xml:cov.xml | ||
--cov-report=html:htmlcov | ||
--durations=20 | ||
--ignore=tests/metagpt/test_environment.py | ||
--ignore=tests/metagpt/test_llm.py | ||
--ignore=tests/metagpt/roles/test_assistant.py | ||
--ignore=tests/metagpt/roles/test_engineer.py | ||
--ignore=tests/metagpt/roles/test_architect.py | ||
--ignore=tests/metagpt/roles/test_invoice_ocr_assistant.py | ||
--ignore=tests/metagpt/roles/di/test_data_interpreter.py | ||
--ignore=tests/metagpt/actions/test_project_management.py | ||
--ignore=tests/metagpt/actions/test_write_code.py | ||
--ignore=tests/metagpt/actions/test_write_code_review.py | ||
--ignore=tests/metagpt/actions/test_write_prd.py | ||
--ignore=tests/metagpt/actions/test_invoice_ocr.py | ||
--ignore=tests/metagpt/actions/test_action_multi_llm.py | ||
--ignore=tests/metagpt/actions/test_design_api.py | ||
--ignore=tests/metagpt/actions/di/test_write_analysis_code.py | ||
--ignore=tests/metagpt/tools/test_metagpt_oas3_api_svc.py | ||
--ignore=tests/metagpt/tools/test_moderation.py | ||
--ignore=tests/metagpt/tools/test_search_engine.py | ||
--ignore=tests/metagpt/tools/test_tool_convert.py | ||
--ignore=tests/metagpt/tools/test_web_browser_engine_playwright.py | ||
--ignore=tests/metagpt/tools/test_web_browser_engine.py | ||
--ignore=tests/metagpt/tools/test_web_browser_engine_selenium.py | ||
--ignore=tests/metagpt/utils/test_mermaid.py | ||
--ignore=tests/metagpt/utils/test_redis.py | ||
--ignore=tests/metagpt/utils/test_tree.py | ||
--ignore=tests/metagpt/utils/test_text.py | ||
--ignore=tests/metagpt/provider/test_bedrock_api.py | ||
--ignore=tests/metagpt/provider/test_openai.py | ||
--ignore=tests/metagpt/provider/test_ark.py | ||
--ignore=tests/metagpt/provider/test_general_api_requestor.py | ||
--ignore=tests/metagpt/provider/test_qianfan_api.py | ||
--ignore=tests/metagpt/provider/zhipuai/test_async_sse_client.py | ||
--ignore=tests/metagpt/provider/zhipuai/test_zhipu_model_api.py | ||
--ignore=tests/metagpt/planner/test_action_planner.py | ||
--ignore=tests/metagpt/planner/test_basic_planner.py | ||
--ignore=tests/metagpt/serialize_deserialize/test_write_code_review.py | ||
--ignore=tests/metagpt/serialize_deserialize/test_sk_agent.py | ||
--ignore=tests/metagpt/rag/factories/test_embedding.py | ||
--ignore=tests/metagpt/rag/factories/test_index.py | ||
--ignore=tests/metagpt/rag/factories/test_base.py | ||
--ignore=tests/metagpt/rag/factories/test_llm.py | ||
--ignore=tests/metagpt/rag/factories/test_ranker.py | ||
--ignore=tests/metagpt/rag/factories/test_retriever.py | ||
--ignore=tests/metagpt/rag/engines/test_simple.py | ||
--ignore=tests/metagpt/memory/test_brain_memory.py | ||
--ignore=tests/metagpt/memory/test_longterm_memory.py | ||
--ignore=tests/metagpt/memory/test_memory_storage.py | ||
norecursedirs = | ||
tests/metagpt/ext | ||
tests/metagpt/environment/android_env | ||
tests/metagpt/environment/werewolf_env | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters