mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-29 22:24:26 +00:00 
			
		
		
		
	Read string of bool env and match against well known values (#5232)
This commit is contained in:
		| @@ -108,6 +108,10 @@ def test_is_ip_address__valid(value): | ||||
|         ("FOO", None, False, False), | ||||
|         ("FOO", None, True, True), | ||||
|         ("FOO", "", False, False), | ||||
|         ("FOO", "False", False, False), | ||||
|         ("FOO", "True", False, True), | ||||
|         ("FOO", "FALSE", True, False), | ||||
|         ("FOO", "fAlSe", True, False), | ||||
|         ("FOO", "Yes", False, True), | ||||
|         ("FOO", "123", False, True), | ||||
|     ), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user