일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- RNN
- mariadb
- SPL
- javascript
- dataframe
- 알고리즘
- Splunk
- index
- pip
- ipad
- synology
- DFS
- Python
- imread
- CNN
- LSTM
- Numpy
- keras
- mean
- pycharm
- 삼성소프트웨어멤버십
- Series
- install
- E-P1
- GT-S80
- GitHub
- Lotto
- Button
- SciPy
- pandas
Archives
- Today
- Total
목록TEST (3)
잠토의 잠망경
[vscode] unit test 설정 - with python
VSCode로 python을 작성하려한다. 가장 기본이 되는 unittest를 하기 위한 환경 설정이 필요하여 기록으로 남긴다. 폴더 구성 index 파일이름 1 settings.json 2 sample009_01.py 3 sample009_01_test.py 사전 준비 { "python.pythonPath": "C:\\Users\\xxxxx\\AppData\\Local\\Programs\\Python\\Python36\\python.exe", "python.testing.unittestEnabled": false, "python.testing.nosetestsEnabled": false, "python.testing.pytestEnabled": true } unit code sample Target F..
만화경
2021. 1. 17. 10:13
[Python] unittest 적용하기
pycharm → code 함수 선택 → 오른쪽 key → goto → test( shift + ctrl + T) 일부 코드가 자동으로 생성된다. 아래와 같이 sample을 넣었으니 unitest하면 된다. from unittest import TestCase class Test(TestCase): def test_read_dbdata(self): from Stock.sample_stock01 import readDBData readDatas = readDBData() self.assertTrue(len(readDatas) >0) test 가 안보이는 경우 모듈을 찾는 과정이라 못 보여주는 거니 참고 인래하라
공부/Python
2020. 7. 4. 07:35