Skip to content

Commit 71c1f64

Browse files
authored
Merge pull request #594 from muffato/pyflakes
Run pyflakes on everything except __init__.py and shell.py
2 parents e04f406 + 37a3bee commit 71c1f64

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,4 @@ jobs:
3434
run: |
3535
export PATH="/usr/share/miniconda/bin:$PATH"
3636
source activate black
37-
pyflakes shpc/utils/fileio.py
38-
pyflakes shpc/utils/terminal.py
39-
pyflakes shpc/main/*.py
40-
pyflakes shpc/main/modules
41-
pyflakes shpc/main/container/base.py
42-
pyflakes shpc/main/container/podman.py
43-
pyflakes shpc/main/container/docker.py
44-
pyflakes shpc/main/container/singularity.py
45-
pyflakes shpc/main/container/update/docker.py
46-
pyflakes shpc/tests
47-
pyflakes shpc/*.py
48-
pyflakes shpc/client/add.py
49-
pyflakes shpc/client/check.py
50-
pyflakes shpc/client/config.py
51-
pyflakes shpc/client/docgen.py
52-
pyflakes shpc/client/get.py
53-
pyflakes shpc/client/inspect.py
54-
pyflakes shpc/client/install.py
55-
pyflakes shpc/client/listing.py
56-
pyflakes shpc/client/namespace.py
57-
pyflakes shpc/client/pull.py
58-
pyflakes shpc/client/show.py
59-
pyflakes shpc/client/test.py
60-
pyflakes shpc/client/view.py
61-
pyflakes shpc/client/uninstall.py
62-
pyflakes shpc/main/wrappers
37+
find shpc/ -name '*.py' \! -name __init__.py \! -name shell.py -exec pyflakes \{\} \+

0 commit comments

Comments
 (0)