Github pylint.yml
Verfasst: Montag 14. Dezember 2020, 21:48
Hallo,
ich habe auf Github die Action pylint aktivert.
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`
Leider kommt es zu folgenden Problemen. Es werden alle py-Dateien angemerkert, hier ein Ausschnitt.
Mehr Details unter https://github.com/ad-software/running_results
Hat jemand eine Idee?
ich habe auf Github die Action pylint aktivert.
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`
Leider kommt es zu folgenden Problemen. Es werden alle py-Dateien angemerkert, hier ein Ausschnitt.
Code: Alles auswählen
Run pylint `ls -R|grep .py$|xargs`
************* Module __init__.py
__init__.py:1:0: F0001: No module named __init__.py (fatal)
************* Module admin.py
admin.py:1:0: F0001: No module named admin.py (fatal)
Hat jemand eine Idee?