Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: 19 days 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()

```