-
Notifications
You must be signed in to change notification settings - Fork 635
76 lines (67 loc) · 2.23 KB
/
pylint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Pylint
on:
push:
branches:
- master
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Checkout
uses: actions/checkout@v1
- name: Run pylint
uses: ricardochaves/[email protected]
with:
python-root-list: "pennylane"
use-pylint: True
use-pycodestyle: false
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pylint-options: "--rcfile .pylintrc"
extra-pycodestyle-options: ""
extra-flake8-options: ""
extra-black-options: ""
extra-mypy-options: ""
extra-isort-options: ""
- name: Check for new test files that need whitelisting
uses: dorny/paths-filter@v2
id: test_files_added
with:
list-files: shell
filters: |
testsAdded:
- added: 'tests/**/test_*.py'
- added: 'tests/test_*.py'
- name: Ensure new test files are whitelisted if there are any
if: steps.test_files_added.outputs.testsAdded == 'true'
run: ./.github/workflows/scripts/validate_new_tests.sh ${{ steps.test_files_added.outputs.testsAdded_files }}
- name: Read whitelisted test files that pass pylint
id: tests_to_lint
run: echo "testfiles=$(cat tests/tests_passing_pylint.txt | tr '\n' ' ')" >> $GITHUB_OUTPUT
- name: Run pylint for whitelisted tests
uses: ricardochaves/[email protected]
with:
python-root-list: "${{ steps.tests_to_lint.outputs.testfiles }}"
use-pylint: True
use-pycodestyle: false
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pylint-options: "--rcfile tests/.pylintrc"
extra-pycodestyle-options: ""
extra-flake8-options: ""
extra-black-options: ""
extra-mypy-options: ""
extra-isort-options: ""