We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252c46c commit 04104a0Copy full SHA for 04104a0
.github/workflows/pr-pytests.yml
@@ -44,10 +44,14 @@ jobs:
44
# pip install pytest faker allure-pytest pytest-cov bandit pylint &&
45
# pip install --break-system-packages target/wheels/iroha-*.whl &&
46
# python -m pytest --cov=. --cov-report xml:coverage-reports/coverage-iroha-python.xml tests/"
47
- - name: Run Bandit
+ # - name: Run Bandit
48
+ # run: |
49
+ # pip install bandit
50
+ # bandit --format json --output bandit-report.json --recursive .
51
+ - name: Run pylint
52
run: |
- pip install bandit
- bandit --format json --output bandit-report.json --recursive .
53
+ pip install pylint
54
+ pylint tests/ -r n > pylint-report.txt
55
- name: SonarQube
56
if: always()
57
uses: sonarsource/sonarqube-scan-action@master
0 commit comments