Open jdonaldson opened 1 week ago
You should also check out github actions : https://docs.github.com/en/actions
Look into using mocks for Google's API : https://docs.python.org/3/library/unittest.mock.html
I'd break things down into these steps:
pytest
in the working directory
It's a good idea to try and write some tests for your code here. Check out the pytest: https://docs.pytest.org/en/stable/, and its corresponding code coverage package : https://coverage.readthedocs.io/en/7.6.4/
It's not necessary to achieve 100% code coverage. Normally, 80% is considered good enough.