Metadata-Version: 2.4
Name: hytest
Version: 0.11.2
Summary: A generic automation framework for QA testing
Author-email: baiyueheiyu 白月黑羽 <jcyrss@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/jcyrss/hytest
Project-URL: Download, https://pypi.python.org/pypi/hytest
Keywords: hytest,automation,testautomation
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: rich
Requires-Dist: dominate
Requires-Dist: executing
Dynamic: license-file

## Introduction

`hytest` is a generic open source test-automation framework. It's mainly but not only used for QA system testing.

Maybe your first question is what's the difference comparing it with `pytest` or  `Robot Framework`?

Well, I like the way of setup/teardown of Robot Framework over that of pytest.

The former is simpler and more intuitive than the latter. The order of multiple layer's setup/teardown is strictly obeyed, which is especially critical for system testing.  But the order of setups/teardowns of pytest is not very strict, [see this](https://github.com/pytest-dev/pytest/issues/7416)

But Robot Framework creates its own "language" to write test cases instead of using python directly. It's much less flexible to write test cases, and it makes it hard to deal with complex data structure. 


So, if you like Robot Framework's way of setup/teardown,  and want to write tests in python, you could try hytest.


## Installation

```py
pip install hytest
```

## Documentation

[User Guide](https://github.com/jcyrss/hytest/blob/main/Documentation.md)


[中文教程链接](https://www.byhy.net/auto/pyatframework/hytest-01/)


## Screenshots

![image](https://github.com/jcyrss/hytest/assets/10496014/ff227feb-b2ec-4b4e-aa76-caa6e0dd0936)

![image](https://github.com/jcyrss/hytest/assets/10496014/4d25fc5d-8fec-4db1-ab2b-d84ecbc06004)
