module
-
파이썬 Jest pytest 이용하기컴퓨터/파이썬 2020. 9. 22. 16:47
Jest는 심플함에 초점을 둔 자바스크립트 테스팅 프레임워크이다. Jest 파이썬 버전도 unittest, pytest 대신 사용할 수 있는 테스팅 프레임워크이다. 1. 설치 및 설정 yarn add jest-pytest pip install pytest-jest --upgrade pip install snapshottest 설치 후, package.json에 아래처럼 추가한다. "jest": { "moduleFileExtensions": [ "py" ], "runner": "jest-pytest", "testPathIgnorePatterns": [ "snap_.*\\.py" ], "testMatch": [ "/tests/test_*.py" ] } 개인 setup.cfg에 사용 중인 flake 및 pyt..