Skip to content

Commit cee3956

Browse files
authored
Merge pull request #157 from iMichka/pep8
Run pycodestyle from github actions
2 parents 4fd9a3c + 1dd2409 commit cee3956

File tree

3 files changed

+4
-97
lines changed

3 files changed

+4
-97
lines changed

.github/workflows/tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ jobs:
6464
python-version: ${{ matrix.python-version }}
6565
- name: Display Python version
6666
run: python -c "import sys; print(sys.version)"
67+
- name: Install pycodestyle
68+
run: pip install pycodestyle
69+
- name: Run pycodestyle
70+
run: pycodestyle . --exclude=docs
6771
- name: Setup castxml for Linux
6872
if: matrix.os == 'ubuntu-20.04' && matrix.castxml == 'castxml'
6973
run: |

unittests/pep8_tester.py

-95
This file was deleted.

unittests/test_all.py

-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
from . import gccxml10185_tester
6161
from . import inline_specifier_tester
6262
from . import test_create_decl_string
63-
from . import pep8_tester
6463
from . import example_tester
6564
from . import test_utils
6665
from . import test_va_list_tag_removal
@@ -90,7 +89,6 @@
9089
from . import test_ccflags
9190

9291
testers = [
93-
pep8_tester,
9492
decl_string_tester,
9593
declaration_files_tester,
9694
declarations_comparison_tester,

0 commit comments

Comments
 (0)