| Conditions | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 22 | @pytest.mark.skipif(platform.python_implementation() != 'CPython' |
||
| 23 | or sys.version_info < (3,) |
||
| 24 | or platform.system() != 'Linux', |
||
| 25 | reason="requires CPython 3 on Debian Linux") |
||
| 26 | def test_detect_py3(): |
||
| 27 | """ |
||
| 28 | Is py3clean implementation for Python 3? |
||
| 29 | """ |
||
| 30 | assert pyclean.compat.get_implementation() is pyclean.py3clean |
||
| 31 | |||
| 40 |