-
Notifications
You must be signed in to change notification settings - Fork 0
Cambios termux #18
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
Open
mechmind-dwv
wants to merge
18
commits into
main
Choose a base branch
from
cambios-termux
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Cambios termux #18
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b06c2f7
Correcciones iniciales: YAML y archivos Python
marjosavi481 03c0e11
Corrección completa de tests y formateo
marjosavi481 6090103
Actualización completa de dependencias v3.0.1:
marjosavi481 de66e4c
Fix input validation in compatibility matrix:
marjosavi481 3e282e3
Apply Black formatting to utils and test files
marjosavi481 6543e47
Update __init__.py
mechmind-dwv cdbfd42
Update __init__.py
mechmind-dwv 0981eda
Update error_diagnosis_engine.py
mechmind-dwv 974d805
Update ci.yml
mechmind-dwv 28a5555
Update deps.yml
mechmind-dwv 8ba5986
Update and rename diagram to diagram.graph
mechmind-dwv d1cbef0
Update and rename docs/architectural/diagram.graph to docs/architectu…
mechmind-dwv dd020e0
Update test_utils_init.py
mechmind-dwv 807f7b7
Update pyproject.toml
mechmind-dwv 98013b8
Update mechmind_cli.py
mechmind-dwv 6b11c56
Update .pre-commit-config.yaml
mechmind-dwv a34bb60
Update error_diagnosis_engine.py
mechmind-dwv 36420ea
Update and rename Overview to Overview.mmd
mechmind-dwv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule -MechanicalMind-Dependency-AI-v3.0-
added at
263c8c
Binary file not shown.
This file contains hidden or 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,20 @@ | ||
| name: CI | ||
| on: push | ||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.12' | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r requirements-dev.txt | ||
| - name: Run tests | ||
| run: | | ||
| pytest --cov=ai_core --cov-report=xml | ||
| - name: Upload coverage | ||
| uses: codecov/codecov-action@v4 | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,35 +1,24 @@ | ||
| -- name: | ||
| uses: actions/download-artifact@v4.2.1 | ||
| with: | ||
| pattern: 'report-*.json' | ||
| path: ./custom_reports/ | ||
| merge-multiple: true | ||
| github-token: ${{ secrets.CI_CD_TOKEN }} | ||
| repository: mechmind-dwv/-MechanicalMind-Dependency-AI-v2.0- | ||
| run-id: ${{ github.event.workflow_run.id }} | ||
| on: | ||
| workflow_run: | ||
| workflows: ["Dependency Analysis"] | ||
| types: | ||
| - completed | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| name: CI Pipeline | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Upload artifact | ||
| uses: actions/upload-artifact@v3 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| name: dependency-report | ||
| path: ./reports/ | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GH_ARTIFACT_ACCESS_TOKEN }} | ||
| - name: Process Artifacts | ||
| python-version: '3.10' | ||
| - name: Install dependencies | ||
| run: | | ||
| echo "Processing downloaded artifacts..." | ||
| python ai_core/artifact_processor.py \ | ||
| --input "${{ runner.temp }}/artifacts" \ | ||
| --output ./reports/ | ||
| [](https://github.com/mechmind-dwv/-MechanicalMind-Dependency-AI-v2.0-/actions/workflows/main.yml) | ||
| python -m pip install --upgrade pip | ||
| pip install -e . | ||
| - name: Run tests | ||
| run: | | ||
| python -m pytest | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -6,3 +6,9 @@ __pycache__/ | |
| *.egg-info/ | ||
| venv/ | ||
| *.log | ||
|
|
||
| # Archivos temporales | ||
| filtered_reqs.txt | ||
|
|
||
| # Entornos virtual | ||
| .venv/ | ||
This file contains hidden or 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,11 @@ | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v5.0.0 | ||
| hooks: | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - id: check-yaml | ||
| - repo: https://github.com/psf/black | ||
| rev: 25.1.0 | ||
| hooks: | ||
| - id: black |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.