일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Spring
- javascript
- MySQL server on 'db' (115)
- python
- 우아한테크코스 2차
- OperationalError
- S3
- EC2
- DB
- AWS
- TypeError: 'property' object is not iterable
- 갓재석
- 우아한 테크코스 2차 합격
- springboot 3.0.0
- 재귀함수가 뭔가요
- classmethod
- AWS S3
- 코딩테스트
- python all testcode
- classproperty
- depends_on
- github
- METACLASS
- 2차 코딩테스트
- depends
- docker-compose
- github skyline
- Django
- docker
- 프로그래머스
Archives
hanbin.dev
[Python] unittest 모든 테스트 코드 실행하기 본문
하위 디렉토리의 모든 테스트를 실행하고 싶을 때가 있다.
그럴때는
$ python -m unittest discover
를 입력하면 하위 디렉토리의 모든 테스트를 실행한다. (기본적으로 "test*.py" 포맷의 파일을 찾아 실행한다.)
$ python -m unittest discover
F.
======================================================================
FAIL: test_failure (test2.HelloTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\workspace\study\TIL\test2.py", line 9, in test_failure
self.assertEqual(0,1)
AssertionError: 0 != 1
----------------------------------------------------------------------
Ran 2 tests in 0.001s
FAILED (failures=1)
'Python' 카테고리의 다른 글
[Python] NotImplementedError: Don't know how to literal-quote value ~ (0) | 2022.07.27 |
---|---|
[Python] metaclass 란 (0) | 2022.06.06 |
TypeError: 'property' object is not iterable (0) | 2021.06.02 |
[Python] namespace란 (0) | 2021.05.12 |
[Python] 메타클래스(metaclass) 란? (0) | 2021.05.11 |