adding test coverage reports

This commit is contained in:
evilchili
2022-11-19 17:23:47 -08:00
parent d6ad44bdd2
commit 5f874c7431
4 changed files with 32 additions and 3 deletions
+4 -1
View File
@@ -2,6 +2,9 @@ import logging
import os
def is_authenticated(username, password):
def is_authenticated(username: str, password: str) -> bool:
"""
Returns True if the supplied username/password matches the environment.
"""
logging.debug(f"Authentication attempt for {username}, {password}")
return (username == os.environ.get('USERNAME') and password == os.environ.get('PASSWORD'))