| Conditions | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 17 | @pytest.mark.skipif(platform.python_implementation() != 'CPython' |
||
| 18 | or platform.system() != 'Linux', |
||
| 19 | reason="requires CPython on Debian Linux") |
||
| 20 | def test_clean_package(): |
||
| 21 | """ |
||
| 22 | Does collecting/traversing packages for cleaning work for Python 2+3? |
||
| 23 | """ |
||
| 24 | with ArgvContext('pyclean', '--legacy', '-p', 'python'): |
||
| 25 | pyclean.cli.main() |
||
| 26 | |||
| 40 |