Skip to content

Commit

Permalink
exclude managementpartner in flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrey-ace authored and yugangw-msft committed Mar 2, 2018
1 parent 6fee049 commit eed1e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/test_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ proc_number=`python -c 'import multiprocessing; print(multiprocessing.cpu_count(
# Run pylint/flake8 on extensions
# - We ignore 'models', 'operations' and files with suffix '_client.py' as they typically come from vendored Azure SDKs
pylint ./src/*/azext_*/ --ignore=models,operations,service_bus_management_client,subscription_client,managementgroups,managementpartner --ignore-patterns=[a-zA-Z_]+_client.py --rcfile=./pylintrc -j $proc_number
flake8 --statistics --exclude=models,operations,*_client.py,managementgroups --append-config=./.flake8 ./src/*/azext_*/
flake8 --statistics --exclude=models,operations,*_client.py,managementgroups,managementpartner --append-config=./.flake8 ./src/*/azext_*/

# Run pylint/flake8 on CI files
pylint ./scripts/ci/*.py --rcfile=./pylintrc
Expand Down

0 comments on commit eed1e67

Please sign in to comment.