ai-testing-swarm 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl

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.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: ai-testing-swarm
3
+ Version: 0.1.2
4
+ Summary: AI-powered testing swarm
5
+ Author-email: Arif Shah <ashah7775@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+
10
+ # AI Testing Swarm 🐝🤖
11
+
12
+ **AI Testing Swarm** is an autonomous, AI-powered testing platform for **API and UI testing**.
13
+ It uses a swarm of specialized AI agents to plan, generate, execute, and learn from tests — with built-in support for **pytest**, **Allure**, and **Playwright**.
14
+
15
+ ---
16
+
17
+ ## ✨ Features
18
+
19
+ - 🧠 Autonomous AI test planning & generation
20
+ - 🔁 Self-learning from test failures
21
+ - 🌐 API testing from request specs / cURL
22
+ - 🖥️ UI testing with Playwright (plug-and-play)
23
+ - 🧪 Pytest integration
24
+ - 📊 Allure reporting
25
+ - ⚡ Fully programmatic API — import and run tests from Python
26
+
27
+ ---
28
+
29
+ ## 📦 Installation
30
+
31
+ ### From PyPI
32
+ ```bash
33
+ pip install ai-testing-swarm
@@ -14,8 +14,8 @@ ai_testing_swarm/core/api_client.py,sha256=ENAL5W7Rg2PsggjvgEE301a4PXuBKpgU-5O10
14
14
  ai_testing_swarm/core/curl_parser.py,sha256=0dPEhRGqn-4u00t-bp7kW9Ii7GSiO0wteB4kDhRKUBQ,1483
15
15
  ai_testing_swarm/reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  ai_testing_swarm/reporting/report_writer.py,sha256=drPRdxIgkXCcZifCAM3Y1FhR2ZE2ap0OnSQQlZQRiU4,2547
17
- ai_testing_swarm-0.1.1.dist-info/METADATA,sha256=00ctM45ApkGBaJbCxVZzCBAaXenWHYgwkgH14l5-lsI,1399
18
- ai_testing_swarm-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
19
- ai_testing_swarm-0.1.1.dist-info/entry_points.txt,sha256=vbW-IBcVcls5I-NA3xFUZxH4Ktevt7lA4w9P4Me0yXo,54
20
- ai_testing_swarm-0.1.1.dist-info/top_level.txt,sha256=OSqbej3vG04SKqgEcgzDTMn8QzpVsxwOzpSG7quhWJw,17
21
- ai_testing_swarm-0.1.1.dist-info/RECORD,,
17
+ ai_testing_swarm-0.1.2.dist-info/METADATA,sha256=zG2R1m4GHGh4JxqpgB-VIwIQhcXVNlYBPjNC3ssQh6Q,911
18
+ ai_testing_swarm-0.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
19
+ ai_testing_swarm-0.1.2.dist-info/entry_points.txt,sha256=vbW-IBcVcls5I-NA3xFUZxH4Ktevt7lA4w9P4Me0yXo,54
20
+ ai_testing_swarm-0.1.2.dist-info/top_level.txt,sha256=OSqbej3vG04SKqgEcgzDTMn8QzpVsxwOzpSG7quhWJw,17
21
+ ai_testing_swarm-0.1.2.dist-info/RECORD,,
@@ -1,55 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: ai-testing-swarm
3
- Version: 0.1.1
4
- Summary: AI-powered testing swarm
5
- Author-email: Arif Shah <ashah7775@gmail.com>
6
- License: MIT
7
- Requires-Python: >=3.9
8
- Description-Content-Type: text/markdown
9
-
10
- # AI Testing Swarm
11
-
12
- Autonomous AI-powered API & UI testing platform.
13
-
14
- ## Run locally
15
- pip install -e .
16
- export OPENAI_API_KEY=your_key
17
- ai-test --input input/request.json
18
-
19
- ## Pytest + Allure
20
- pytest --alluredir=allure-results
21
- allure serve allure-results
22
-
23
-
24
- ai-testing-swarm/
25
-
26
- ├── ai_testing_swarm/
27
- │ ├── __init__.py
28
- │ │
29
- │ ├── core/
30
- │ │ ├── curl_parser.py
31
- │ │ ├── api_client.py
32
- │ │
33
- │ ├── agents/
34
- │ │ ├── test_planner_agent.py
35
- │ │ ├── test_writer_agent.py
36
- │ │ ├── execution_agent.py
37
- │ │ ├── llm_reasoning_agent.py
38
- │ │ ├── learning_agent.py
39
- │ │ ├── release_gate_agent.py
40
- │ │ ├── ui_agent.py 👈 Playwright auto-plug
41
- │ │
42
- │ ├── orchestrator.py
43
-
44
- │ └── cli.py 👈 ai-test command
45
-
46
- ├── tests/
47
- │ ├── test_swarm_api.py 👈 pytest + allure
48
-
49
- ├── memory/
50
- │ └── failure_memory.json
51
-
52
- ├── pyproject.toml 👈 packaging
53
- ├── README.md
54
- └── input/
55
- └── request.json