Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
fc3993d
Create build.yml
JJMontenegroP Nov 2, 2024
7f8e97f
Create sonar-project.properties
JJMontenegroP Nov 2, 2024
ab91943
Update build.yml
JJMontenegroP Nov 2, 2024
65cc18e
Delete .github/workflows/test.yml
JJMontenegroP Nov 2, 2024
b225490
Update build.yml
JJMontenegroP Nov 2, 2024
d10a588
Update build.yml
JJMontenegroP Nov 2, 2024
af99993
Update build.yml
JJMontenegroP Nov 2, 2024
7f8fb77
Update build.yml
JJMontenegroP Nov 2, 2024
524da9a
Update build.yml
JJMontenegroP Nov 2, 2024
c7ed50e
Update build.yml
JJMontenegroP Nov 2, 2024
5796555
Update build.yml
JJMontenegroP Nov 2, 2024
cc82191
Update build.yml
JJMontenegroP Nov 2, 2024
3f448f5
Update build.yml
JJMontenegroP Nov 2, 2024
7ce0b36
Update build.yml
JJMontenegroP Nov 2, 2024
9fdddcd
Update build.yml
JJMontenegroP Nov 2, 2024
3b4cbb7
Update build.yml
JJMontenegroP Nov 2, 2024
a4cfce5
Update build.yml
JJMontenegroP Nov 2, 2024
e188817
Update build.yml
JJMontenegroP Nov 2, 2024
14885b5
Update build.yml
JJMontenegroP Nov 2, 2024
a392106
Update build.yml
JJMontenegroP Nov 2, 2024
daa2b7b
Update build.yml
JJMontenegroP Nov 2, 2024
eb00442
Update build.yml
JJMontenegroP Nov 2, 2024
0ec3bc8
Update build.yml
JJMontenegroP Nov 2, 2024
eaf9948
Update build.yml
JJMontenegroP Nov 2, 2024
09de61c
Update build.yml
JJMontenegroP Nov 2, 2024
3be9a13
Update build.yml
JJMontenegroP Nov 2, 2024
4d498dd
Update build.yml
JJMontenegroP Nov 2, 2024
bb1bd67
Update build.yml
JJMontenegroP Nov 2, 2024
09004a0
Update build.yml
JJMontenegroP Nov 2, 2024
1cbf473
Update build.yml
JJMontenegroP Nov 2, 2024
aafe90d
update build.yml
JJMontenegroP Nov 2, 2024
90aa9b0
update build.yml
JJMontenegroP Nov 2, 2024
0d938a7
Update build.yml
JJMontenegroP Nov 2, 2024
c04dce0
Update build.yml
JJMontenegroP Nov 2, 2024
ae44f56
Update build.yml
JJMontenegroP Nov 2, 2024
0b1cce0
Update build.yml
JJMontenegroP Nov 2, 2024
f718b3c
update sonar properties
JJMontenegroP Nov 2, 2024
46adc55
Update sonar properties
JJMontenegroP Nov 2, 2024
d90b2f7
update coveragerc
JJMontenegroP Nov 2, 2024
9404f2c
update coveragerc
JJMontenegroP Nov 2, 2024
44c9adb
update coverage tests
JJMontenegroP Nov 2, 2024
eb4d584
Update build.yml
JJMontenegroP Nov 2, 2024
f5a42ea
Update build.yml
JJMontenegroP Nov 2, 2024
907d050
update requirements
JJMontenegroP Nov 2, 2024
92ceec5
Update sonar-project.properties
JJMontenegroP Nov 2, 2024
5ab251f
Update build.yml
JJMontenegroP Nov 2, 2024
969d6a7
Update build.yml
JJMontenegroP Nov 2, 2024
43ce731
Update build.yml
JJMontenegroP Nov 2, 2024
bd633aa
Update build.yml
JJMontenegroP Nov 2, 2024
623992c
Create tox.ini
JJMontenegroP Nov 2, 2024
9ae1721
Update tox.ini
JJMontenegroP Nov 2, 2024
76047a8
Update build.yml
JJMontenegroP Nov 2, 2024
d65992f
update collection.py
JJMontenegroP Nov 3, 2024
c0f5c4a
update collection.py
JJMontenegroP Nov 3, 2024
a9aff6b
update collection.py
JJMontenegroP Nov 3, 2024
d1bbd0b
update collection.py
JJMontenegroP Nov 3, 2024
4a2d2b4
update collection.py & album.py
JJMontenegroP Nov 3, 2024
5218a2a
Update album.py
JJMontenegroP Nov 3, 2024
544e3f4
chore: include bug
caromerom1 Nov 4, 2024
fc901a4
Reliability bug solution
JJMontenegroP 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.
10 changes: 5 additions & 5 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# .coveragerc to control coverage.py
[run]
[coverage:run]
relative_files = True
branch = True
source = src
source = src/
# omit = bad_file.py

[paths]
source =
src/
*/site-packages/

[report]
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
Expand All @@ -25,4 +25,4 @@ exclude_lines =

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
if __name__ == .__main__.:
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Instalación de librerías y dependencias
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Run tox
run: |
tox -e py

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
28 changes: 0 additions & 28 deletions .github/workflows/test.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/*
env/*
src/modelo/__pycache__/*
src/logica/__pycache__/*
src/vista/__pycache__/*
Expand Down
15 changes: 15 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"sonarlint.connectedMode.project": {
"connectionId": "jjmontenegrop",
"projectKey": "JJMontenegroP_TutorialCancionesTags"
}
}
Binary file added aplicacion.sqlite
Binary file not shown.
Loading