Skip to content
On this page

Javascript

Version

Running Python on Python v3.11.8

Supported languages

Python

Testing framework

Pytest

Special reminders and implementation details

js
# content of test_sample.py
def func(x):
    return x + 1


def test_answer():
    assert func(3) == 5
1
2
3
4
5
6
7