Skip to content

Commit

Permalink
Test2
Browse files Browse the repository at this point in the history
  • Loading branch information
UtkarshMishra-Microsoft committed Dec 13, 2024
1 parent adbc614 commit 273d4f9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black isort flake8 pylint -r requirements.txt
python -m pip install black isort flake8 pylint
python -m pip install -r ClientAdvisor/App/requirements.txt
python -m pip install -r ResearchAssistant/App/requirements.txt
- name: Format with isort
run: |
Expand All @@ -38,12 +40,12 @@ jobs:
- name: Run Flake8
run: |
echo "Running Flake8 for the entire project..."
python -m flake8 --config=ClientAdvisor\App\.flake8 ClientAdvisor/App
python -m flake8 --config=ResearchAssistant\App\.flake8 ResearchAssistant/App
echo "Running Flake8 for Client Advisor..."
python -m flake8 --config=ClientAdvisor/App/.flake8 ClientAdvisor/App --verbose
echo "Running Flake8 for Research Assistant..."
python -m flake8 --config=ResearchAssistant/App/.flake8 ResearchAssistant/App --verbose
- name: Run Pylint
run: |
echo "Running Pylint for the entire project..."
python -m pylint . --rcfile=.pylintrc
python -m pylint . --rcfile=.pylintrc

0 comments on commit 273d4f9

Please sign in to comment.