basin-dev / continue

0 stars 0 forks source link

pytest unit test does not import function it is testing #192

Closed TyDunn closed 1 year ago

TyDunn commented 1 year ago

Test created for onboarding bug:

import pytest

def test_sum():
    assert sum(2, 3) == 5

Since sum() from sum.py is not imported, it uses the Python default sum method and errors as a result

sestinj commented 1 year ago

Done for Python!