URL: https://github.com/SSSD/sssd/pull/226
Title: #226: Config check regex

lslebodn commented:
"""
It would be good to write an test. (probably integration).
But we would need to skip test on platforms with old libini_config

Following should work
```python
import platform
(name, version, _) =  platform.dist()
if ((name in ('redhat', 'centos') and version[0] == "6")
    or (name == 'debian' and version[0] == "8")):
    pytest.skip("sssctl config-check is not supported due to old libini_config")
```

"""

See the full comment at 
https://github.com/SSSD/sssd/pull/226#issuecomment-293260151
_______________________________________________
sssd-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to