Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2f278b6
Actualización .gitignore
fredyalarcon Nov 2, 2024
d996370
ajuste inicial sonar
fredyalarcon Nov 2, 2024
a6c255c
ca,bios build.yml
fredyalarcon Nov 2, 2024
4081d98
prueba mostrar reporte
fredyalarcon Nov 2, 2024
a10a8fa
prueba cubrimiento sonar
fredyalarcon Nov 2, 2024
9fa14c7
prueba versión python
fredyalarcon Nov 2, 2024
72ae23e
prueba generar coverage.xml
fredyalarcon Nov 2, 2024
00c8800
archivo generado de covertura
fredyalarcon Nov 2, 2024
20c2edd
cambio directorio de salida coverage
fredyalarcon Nov 2, 2024
a3754f0
prueba crear directorio en yml
fredyalarcon Nov 2, 2024
eceaf5f
ok
fredyalarcon Nov 2, 2024
fc06015
ok
fredyalarcon Nov 2, 2024
7a50083
ok
fredyalarcon Nov 2, 2024
b86fa72
ok
fredyalarcon Nov 2, 2024
b36f97f
ok
fredyalarcon Nov 2, 2024
a984fe2
prueba propiedad path
fredyalarcon Nov 2, 2024
f25882b
codigo duplicado para ver estado en sonar
fredyalarcon Nov 2, 2024
0a272af
prueba
fredyalarcon Nov 2, 2024
5f60a01
función duplicada
fredyalarcon Nov 2, 2024
8766684
Solución issue 1
fredyalarcon Nov 3, 2024
904656b
se restaura
fredyalarcon Nov 4, 2024
0c4ac83
Solución issue 1
fredyalarcon Nov 4, 2024
562e015
Ajuste pipeline y retsauración issue
fredyalarcon Nov 4, 2024
b6e72c8
Solución issue 1
fredyalarcon Nov 4, 2024
1258ff7
Solución issues 2,3 y 5
fredyalarcon Nov 4, 2024
ede6963
Test de cobertura
fredyalarcon Nov 4, 2024
246e95e
Nuevas pruebas para dar cobertura en colección
fredyalarcon Nov 4, 2024
66c0f30
cobertura de pruebas
fredyalarcon Nov 4, 2024
4b4cd51
amplia cobertura
fredyalarcon Nov 4, 2024
f36ea3d
fix
fredyalarcon Nov 4, 2024
1f87419
refactor exception handling
fredyalarcon Nov 4, 2024
72901a2
fix issue 4
fredyalarcon Nov 4, 2024
0d8ddaa
fix test
fredyalarcon Nov 4, 2024
60841d8
Fix testing
fredyalarcon Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .coverage
Binary file not shown.
28 changes: 0 additions & 28 deletions .coveragerc

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build
on:
push:
branches:
- '**'
pull_request:
types: [opened, synchronize, reopened]

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configuración de entorno de python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Instalación de librerías y dependencias
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Correr pruebas con coverage
id: correr-pruebas
run: |
python -m coverage run -m unittest discover -s tests
python -m coverage xml -o coverage-reports/coverage.xml
python -m coverage report -m

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
28 changes: 0 additions & 28 deletions .github/workflows/test.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ src/modelo/__pycache__/*
src/logica/__pycache__/*
src/vista/__pycache__/*
venv/*
__pycache__/*
tests/__pycache__/*

#BD
aplicacion.sqlite
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"sonarlint.connectedMode.project": {
"connectionId": "fredyalarcon",
"projectKey": "fredyalarcon_TutorialCancionesTags"
}
}
Loading