Azrue pipelines: Use flake8 to find undefined names

This commit is contained in:
cclauss
2019-04-20 09:31:48 +02:00
committed by GitHub
parent dd157d483e
commit 869aa411f4
+5
View File
@@ -26,6 +26,11 @@ steps:
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
pip install flake8
flake8 . --count --exclude=./requests3/core/_http/packages/six.py --select=F821 --show-source --statistics
displayName: 'flake8 undefined names'
- script: |
pip install pytest pytest-azurepipelines
pytest