테스트 성공했는데 아래에는 에러가 뜸
flake8의 코드 규칙같은게 있는게 그거 틀렸다는 것임
대표적으로 a = 1,2,3을 적을때 a = 1, 2, 3 이런식으로 ,앞은 붙이고 ,뒤는 띄어써야하는 규칙
신경 안써되 되긴함
아래와 같이 코드 쓰면 문제 없음
calc.py
def add(x, y):
"""Add two number together"""
return x+y
def substract(x, y):
return (y-x)
Python
복사
tests.py
from django.test import TestCase
from app.calc import add, substract
class CalcTests(TestCase):
def test_add_numbers(self):
"""Test that two numbers are added together"""
self.assertEqual(add(3, 8), 11)
def test_substract_number(self):
"""Test that values are subtracted and returned"""
self.assertEqual(substract(5, 11), 6)
Python
복사