espin086 / GPT-Jobhunter

AI-powered job analysis and resume coaching tool using GPT. Analyzes job postings and provides personalized recommendations to job seekers for improving their resumes.
MIT License
55 stars 15 forks source link

Created SQLiteHandler.py #107

Closed AtharvaJadhav7 closed 8 months ago

AtharvaJadhav7 commented 8 months ago

@espin086 Check # 81

espin086 commented 8 months ago

Looks good, I'll add a line to this pull request on a couple of hours to the testing suite, to skip the resume check in the GitHub actions but not locally, something like this in the unit test for resume presence:

import pytest import os

@pytest.mark.skipif(os.environ.get('GITHUB_ACTION'), reason="Skipping in GitHub Actions") def test_github_action(): assert True

espin086 commented 8 months ago

Thank you for this!

espin086 commented 8 months ago

Closes #107