jendrikseipp / vulture

Find dead Python code
MIT License
3.41k stars 150 forks source link

Improve pytest invocation in tox #247

Closed The-Compiler closed 3 years ago

The-Compiler commented 3 years ago

This avoids the old py.test name (replaced by pytest in v3.0.0 in August 2016), and also makes it possible to pass arguments to pytest like so:

tox -e py39 -- tests/test_utils.py

(checklist not really applicable)

codecov-io commented 3 years ago

Codecov Report

Merging #247 (a36fec0) into master (d40303b) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #247   +/-   ##
=======================================
  Coverage   99.36%   99.36%           
=======================================
  Files          17       17           
  Lines         631      631           
=======================================
  Hits          627      627           
  Misses          4        4           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update d40303b...a36fec0. Read the comment docs.

jendrikseipp commented 3 years ago

Interesting! Didn't know about that feature, thanks!