Skip to content
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

feat: added prospector code analysis tool #688

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 26 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Static Code Analysis Of Codebase

on: [push, pull_request]

jobs:
static_analysis:
runs-on: ubuntu-latest
steps:
- name: Install Python for analysis
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies for analysis
run: |
python -m pip install --upgrade pip
pip install prospector

- name: Run static code analysis using Prospector tool
run: prospector > static_analysis.json

- name: Deploy Static Analysis Result to GitHub Artifacts
uses: actions/upload-artifact@v2
with:
name: static_analysis_result
path: static_analyis.json
8 changes: 4 additions & 4 deletions .github/workflows/ligthtwood.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Integration and Unit Tests Lightwood

on:
push:
branches: [ staging ]
pull_request:
branches:
- stable
- staging
branches: [ staging ]


jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
Expand Down
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
repos:
- repo: https://github.com/jendrikseipp/vulture
rev: 'v2.3' # or any later Vulture version
hooks:
- id: vulture
10 changes: 0 additions & 10 deletions lightwood/__about__.py

This file was deleted.

46 changes: 0 additions & 46 deletions lightwood/analysis/base.py

This file was deleted.

92 changes: 0 additions & 92 deletions lightwood/analysis/explain.py

This file was deleted.

Empty file.
186 changes: 0 additions & 186 deletions lightwood/analysis/helpers/acc_stats.py

This file was deleted.

Loading