(_dir, args)
| 53 | |
| 54 | |
| 55 | def traverse(_dir, args): |
| 56 | for home, dirs, files in os.walk(_dir): |
| 57 | if "./target" in home or "./.github" in home: |
| 58 | continue |
| 59 | for filename in files: |
| 60 | if filename.endswith('.md'): |
| 61 | path = os.path.join(home, filename) |
| 62 | if os.path.islink(path) == False: |
| 63 | analyze_doc(home, path, args) |
| 64 | |
| 65 | |
| 66 | if __name__ == "__main__": |
no test coverage detected