Skip to content

Commit a79f8d1

Browse files
committed
feat: add pypi shields
1 parent 746a970 commit a79f8d1

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
![GitHub actions workflow status](https://img.shields.io/github/actions/workflow/status/argodevops/pyTestBehave/main.yml)
44
![GitHub language count](https://img.shields.io/github/languages/count/argodevops/pyTestBehave)
5+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pytestbehave)
56
![PyPI - License](https://img.shields.io/pypi/l/pytestbehave)
67
![PyPI - Version](https://img.shields.io/pypi/v/pytestbehave)
78
![GitHub Downloads](https://img.shields.io/github/downloads/argodevops/pytestbehave/total)
8-
![PyPI - Downloads](https://img.shields.io/pypi/dm/pytestbehave)
99

1010
```
1111
____ _____ _ ____ _
@@ -64,9 +64,9 @@ The design is split into two sections - **Test Suite** and **Framework Layer**.
6464

6565
### Pre-requisites
6666

67-
Install the required system dependencies. `sudo apt-get install requirements.system`
67+
Install the required system dependencies. `sudo apt-get install requirements.system`.
6868

69-
Install the required Python module dependencies. `sudo pip install -r requirements.txt`
69+
Install the required Python module dependencies. `sudo pip install -r requirements.txt`.
7070

7171
Install the latest stable version of the web drivers you wish to use in `drivers`.
7272

@@ -92,7 +92,7 @@ There are also example tests for `database` connectivity and `API` requests.
9292

9393
### Logging Output
9494

95-
When running tests each step is logged in a format to assist with understanding the execution and assist with any debugging. A sample output is shown below.
95+
When running tests each step is logged in a format to assist with understanding the execution and with debugging issues.
9696

9797
```
9898
Feature: Example Login # features/example/login.feature:4

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
[project]
22
name = "PyTestBehave"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = [
55
{ name="Argo DevOps", email="[email protected]" },
66
]
77
description = "A powerful test automation framework designed to provide a comprehensive solution for testing user interfaces and APIs"
88
readme = "README.md"
99
requires-python = ">=3.8"
1010
classifiers = [
11-
"Programming Language :: Python :: 3",
11+
"Programming Language :: Python :: 3.9",
12+
"Programming Language :: Python :: 3.10",
13+
"Programming Language :: Python :: 3.11",
1214
"License :: OSI Approved :: Apache Software License",
1315
"Operating System :: OS Independent",
1416
]
1517

1618
[project.urls]
17-
Homepage = "https://github.com/pypa/sampleproject"
18-
Issues = "https://github.com/pypa/sampleproject/issues"
19+
Homepage = "https://github.com/argodevops/pytestbehave"
20+
Issues = "https://github.com/argodevops/pytestbehave/issues"
1921

2022
[build-system]
2123
requires = ["hatchling"]

0 commit comments

Comments
 (0)