Skip to content

Easy testing for embedded Python

License

Notifications You must be signed in to change notification settings

medecau/simpletest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

👋

SimpleTest is a Python library that helps write and run tests on CircuitPython. It aims to mimic, as much as possible, the Pytest API.

Usage

import simpletest as st

def inc(num):
    return num + 1

def test_answer():
    assert inc(3) == 4

st.run(globals())

Releases

No releases published

Packages

No packages published

Languages