This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/test/unit/test_autophotographer.py
Oscar Pocock f35bd80767
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/test Pipeline failed
Packaged autophotographer and added tests and test pipelines
2022-04-28 22:17:20 +01:00

6 lines
208 B
Python

from autophotographer import autophotographer_main
import pytest
def test_load_config_nonexistent_file():
with pytest.raises(FileNotFoundError):
autophotographer_main.load_config("blahblahblah")