[PR #19] [MERGED] Static Analysis Tests #19

Closed
opened 2026-02-28 15:18:49 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheTedLab/SpotiStats/pull/19
Author: @TheTedLab
Created: 3/15/2024
Status: Merged
Merged: 3/15/2024
Merged by: @TheTedLab

Base: devHead: tests


📝 Commits (10+)

  • aa9d624 Merge pull request #1 from TheTedLab/dev
  • 3606aef Merge pull request #3 from TheTedLab/dev
  • 8440943 Merge branch 'dev' into mr1
  • 84403e2 Merge branch 'dbapi' into mr1
  • 3160f29 Merge branch 'scraper' into mr1
  • 162fcea Merge branch 'web' into mr1
  • 420f20a Merge branch 'aggregator' into mr1
  • 0d17531 Merge branch 'scraper' into mr1
  • a9d537e Merge pull request #17 from TheTedLab/dev
  • 22864ba Add readmes; prepare distributive

📊 Changes

34 files changed (+921400 additions, -690 deletions)

View changed files

.pylintrc (+632 -0)
📝 README.md (+39 -2)
prospector_profile.yaml (+27 -0)
prospector_report.txt (+12 -0)
pylint_report.txt (+85 -0)
src/.env (+10 -0)
src/aggregator/README.md (+9 -0)
📝 src/aggregator/aggregator.py (+118 -57)
📝 src/aggregator/artist_aggregate.py (+26 -7)
📝 src/aggregator/classes/album.py (+8 -1)
📝 src/aggregator/classes/artist.py (+8 -1)
📝 src/aggregator/classes/track.py (+17 -6)
📝 src/aggregator/save_artist.py (+7 -4)
📝 src/aggregator/server_vars.py (+3 -2)
📝 src/aggregator/stats_from_files.py (+38 -58)
📝 src/aggregator/stats_update.py (+23 -53)
src/aggregator/stats_utils.py (+101 -0)
📝 src/aggregator/tracks_count.py (+7 -6)
src/api/README.md (+7 -0)
📝 src/api/entity/track.py (+3 -3)

...and 14 more files

📄 Description

Implement pylint and prospector linters
Static analysis errors fixes for pylint
Prospector errors fixes
Update README.md
Create README.md for aggregator directory


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheTedLab/SpotiStats/pull/19 **Author:** [@TheTedLab](https://github.com/TheTedLab) **Created:** 3/15/2024 **Status:** ✅ Merged **Merged:** 3/15/2024 **Merged by:** [@TheTedLab](https://github.com/TheTedLab) **Base:** `dev` ← **Head:** `tests` --- ### 📝 Commits (10+) - [`aa9d624`](https://github.com/TheTedLab/SpotiStats/commit/aa9d624d25a3eb93365491b6fe7520d4c497fcd1) Merge pull request #1 from TheTedLab/dev - [`3606aef`](https://github.com/TheTedLab/SpotiStats/commit/3606aef3e659033d19db97407dd50a17be3cf110) Merge pull request #3 from TheTedLab/dev - [`8440943`](https://github.com/TheTedLab/SpotiStats/commit/8440943b206a25bfe0020b37a08f3c52aa414fc2) Merge branch 'dev' into mr1 - [`84403e2`](https://github.com/TheTedLab/SpotiStats/commit/84403e2efaa80f126f4c4669b80f87a3515147ed) Merge branch 'dbapi' into mr1 - [`3160f29`](https://github.com/TheTedLab/SpotiStats/commit/3160f29cf8af788cae04800fb1e6ff02279be5b9) Merge branch 'scraper' into mr1 - [`162fcea`](https://github.com/TheTedLab/SpotiStats/commit/162fcea832c5e93e547e702a3172a123674c0b09) Merge branch 'web' into mr1 - [`420f20a`](https://github.com/TheTedLab/SpotiStats/commit/420f20a37902e37899ef90990033fecb0d5db684) Merge branch 'aggregator' into mr1 - [`0d17531`](https://github.com/TheTedLab/SpotiStats/commit/0d17531dc89f8eea13e29f24eb14fb028b86b896) Merge branch 'scraper' into mr1 - [`a9d537e`](https://github.com/TheTedLab/SpotiStats/commit/a9d537e478990fe7630f82dc95900d641161e72c) Merge pull request #17 from TheTedLab/dev - [`22864ba`](https://github.com/TheTedLab/SpotiStats/commit/22864ba647575b71e939fa46a41de9948d98d4b0) Add readmes; prepare distributive ### 📊 Changes **34 files changed** (+921400 additions, -690 deletions) <details> <summary>View changed files</summary> ➕ `.pylintrc` (+632 -0) 📝 `README.md` (+39 -2) ➕ `prospector_profile.yaml` (+27 -0) ➕ `prospector_report.txt` (+12 -0) ➕ `pylint_report.txt` (+85 -0) ➕ `src/.env` (+10 -0) ➕ `src/aggregator/README.md` (+9 -0) 📝 `src/aggregator/aggregator.py` (+118 -57) 📝 `src/aggregator/artist_aggregate.py` (+26 -7) 📝 `src/aggregator/classes/album.py` (+8 -1) 📝 `src/aggregator/classes/artist.py` (+8 -1) 📝 `src/aggregator/classes/track.py` (+17 -6) 📝 `src/aggregator/save_artist.py` (+7 -4) 📝 `src/aggregator/server_vars.py` (+3 -2) 📝 `src/aggregator/stats_from_files.py` (+38 -58) 📝 `src/aggregator/stats_update.py` (+23 -53) ➕ `src/aggregator/stats_utils.py` (+101 -0) 📝 `src/aggregator/tracks_count.py` (+7 -6) ➕ `src/api/README.md` (+7 -0) 📝 `src/api/entity/track.py` (+3 -3) _...and 14 more files_ </details> ### 📄 Description Implement pylint and prospector linters Static analysis errors fixes for pylint Prospector errors fixes Update README.md Create README.md for aggregator directory --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 15:18:49 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SpotiStats#19
No description provided.