omnitest 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- omnitest-0.1.0/PKG-INFO +40 -0
- omnitest-0.1.0/README.md +27 -0
- omnitest-0.1.0/pyproject.toml +37 -0
- omnitest-0.1.0/setup.cfg +4 -0
- omnitest-0.1.0/src/omnitest/__init__.py +7 -0
- omnitest-0.1.0/src/omnitest/hello.py +6 -0
- omnitest-0.1.0/src/omnitest.egg-info/PKG-INFO +40 -0
- omnitest-0.1.0/src/omnitest.egg-info/SOURCES.txt +9 -0
- omnitest-0.1.0/src/omnitest.egg-info/dependency_links.txt +1 -0
- omnitest-0.1.0/src/omnitest.egg-info/top_level.txt +1 -0
- omnitest-0.1.0/tests/test_hello.py +8 -0
omnitest-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: omnitest
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: One platform for everything
|
|
5
|
+
Author-email: Manikandan Parasuraman <manikandan.p.learning@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: automation,testing,playwright,selenium,qa
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# OmniTest
|
|
15
|
+
|
|
16
|
+
> One platform for everything.
|
|
17
|
+
|
|
18
|
+
OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
|
|
19
|
+
|
|
20
|
+
## Vision
|
|
21
|
+
|
|
22
|
+
- UI Automation
|
|
23
|
+
- API Testing
|
|
24
|
+
- Performance Testing
|
|
25
|
+
- Security Testing
|
|
26
|
+
- Reliability Testing
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install omnitest
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
from omnitest import hello
|
|
38
|
+
|
|
39
|
+
print(hello())
|
|
40
|
+
```
|
omnitest-0.1.0/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# OmniTest
|
|
2
|
+
|
|
3
|
+
> One platform for everything.
|
|
4
|
+
|
|
5
|
+
OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
|
|
6
|
+
|
|
7
|
+
## Vision
|
|
8
|
+
|
|
9
|
+
- UI Automation
|
|
10
|
+
- API Testing
|
|
11
|
+
- Performance Testing
|
|
12
|
+
- Security Testing
|
|
13
|
+
- Reliability Testing
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install omnitest
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
from omnitest import hello
|
|
25
|
+
|
|
26
|
+
print(hello())
|
|
27
|
+
```
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=80", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "omnitest"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "One platform for everything"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Manikandan Parasuraman", email = "manikandan.p.learning@gmail.com"}
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
keywords = [
|
|
18
|
+
"automation",
|
|
19
|
+
"testing",
|
|
20
|
+
"playwright",
|
|
21
|
+
"selenium",
|
|
22
|
+
"qa"
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
classifiers = [
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"Operating System :: OS Independent",
|
|
28
|
+
"License :: OSI Approved :: MIT License"
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
dependencies = []
|
|
32
|
+
|
|
33
|
+
[tool.setuptools]
|
|
34
|
+
package-dir = {"" = "src"}
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
where = ["src"]
|
omnitest-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: omnitest
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: One platform for everything
|
|
5
|
+
Author-email: Manikandan Parasuraman <manikandan.p.learning@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: automation,testing,playwright,selenium,qa
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# OmniTest
|
|
15
|
+
|
|
16
|
+
> One platform for everything.
|
|
17
|
+
|
|
18
|
+
OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
|
|
19
|
+
|
|
20
|
+
## Vision
|
|
21
|
+
|
|
22
|
+
- UI Automation
|
|
23
|
+
- API Testing
|
|
24
|
+
- Performance Testing
|
|
25
|
+
- Security Testing
|
|
26
|
+
- Reliability Testing
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install omnitest
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
from omnitest import hello
|
|
38
|
+
|
|
39
|
+
print(hello())
|
|
40
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
omnitest
|