Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
surapuramakhil committed Oct 26, 2024
1 parent 91724da commit f290ddf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
minversion = 6.0
addopts = --strict-markers --tb=short --cov=src --cov-report=term-missing
testpaths =
tests
tests
pythonpath = src
4 changes: 2 additions & 2 deletions src/ai_hawk/authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def start(self):
return
else:
logger.info("User is not logged in. Proceeding with login.")
self.__handle_login()
self.handle_login()

def __handle_login(self):
def handle_login(self):
try:
logger.info("Navigating to the AIHawk login page...")
self.navigate_to_login()
Expand Down
4 changes: 3 additions & 1 deletion tests/test_aihawk_easy_applier.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import pytest
from unittest import mock
from src.aihawk_easy_applier import AIHawkEasyApplier

from ai_hawk.linkedIn_easy_applier import AIHawkEasyApplier



@pytest.fixture
Expand Down

0 comments on commit f290ddf

Please sign in to comment.