Bierbunker / Lab-Tool

MIT License
3 stars 0 forks source link

Use Vulture for testing and coverage on local side #29

Open Xyhlon opened 2 years ago

Xyhlon commented 2 years ago
  Vulture finds unused code in Python programs. This is useful for cleaning up and finding errors in large code
  bases. If you run Vulture on both your library and test suite you can find untested code.

  Due to Python's dynamic nature, static code analyzers like Vulture are likely to miss some dead code. Also, code
  that is only called implicitly may be reported as unused. Nonetheless, Vulture can be a very helpful tool for
  higher code quality.

  homepage   https://github.com/jendrikseipp/vulture 
  languages  Python                                  
  categories Linter