This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
sonic-buildimage/src/sonic-dhcp-utilities/setup.cfg
Yaqiang Zhu 59dddb14d4
[dhcp_server] Rename sonic_dhcp_server to sonic_dhcp_utilities (#17276)
Why I did it
sonic_dhcp_server.whl contains not only dhcp_server functionality but also part of dhcp_relay functionality, the existing naming is not appropriate.
2023-11-28 13:28:16 -08:00

21 lines
299 B
INI

[aliases]
test=pytest
[tool:pytest]
addopts = --durations=5 --cov
testpaths = tests
[coverage:run]
branch = True
source = dhcp_utilities
[coverage:report]
exclude_lines =
main()
if __name__ == .__main__.:
precision = 2
show_missing = True
skip_covered = True
sort = Cover
fail_under = 80