Pytest basic
·
인공지능/Python
우리는 왜 pytest를 사용해야하는가?Intuitive Syntex : pytest offers readable, expressive way to write tests.Powerful Fixtures : Easily set up and tear down test environments with fixturesRich Plugin Ecosystem : Extend pytest's capabilities with a wide range of plugins 사용법설치 : pip install pytest테스트 파일 명명 : *_test.py or test_*.py (*은 문구)테스트 함수 명명 : test_* 라는 이름으로 명명 (*은 문구)클래스 이름 명명 : Test* 라는 이름으로 명명 (*은 문구)..