Ecosyste.ms: Awesome
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: 19 days ago
JSON representation
Write small or big tests with PyTests a (testing framework)
- Host: GitHub
- URL: https://github.com/mr-cheff/pytests
- Owner: mr-cheff
- License: mit
- Created: 2021-11-10T21:22:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T16:10:08.000Z (about 1 year ago)
- Last Synced: 2024-11-22T03:03:13.683Z (about 2 months ago)
- Topics: pytest, python, testing, unittest
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 Truetests.new(
my_test, # Function with out calling
name="My test",
description="",
result=True,
#....
)tests.run_all()
```