An open API service indexing awesome lists of open source software.

https://github.com/mr-cheff/pytests

Write small or big tests with PyTests a (testing framework)
https://github.com/mr-cheff/pytests

pytest python testing unittest

Last synced: 10 months ago
JSON representation

Write small or big tests with PyTests a (testing framework)

Awesome Lists containing this project

README

          

# PyTests
Write small or big tests with PyTests a testing framework

## Usage

NOTE: Things might change

```py

from pytests import PyTest

tests = PyTest()

def my_test():
return True

tests.new(
my_test, # Function with out calling
name="My test",
description="",
result=True,
#....
)

tests.run_all()

```