https://github.com/srinivasskc/pytestbddautomation
Behavior Driven Python with pytest-bdd
https://github.com/srinivasskc/pytestbddautomation
pytest-bdd python
Last synced: about 1 year ago
JSON representation
Behavior Driven Python with pytest-bdd
- Host: GitHub
- URL: https://github.com/srinivasskc/pytestbddautomation
- Owner: srinivasskc
- Created: 2020-06-20T03:26:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-21T05:16:26.000Z (almost 6 years ago)
- Last Synced: 2025-06-03T12:13:40.866Z (about 1 year ago)
- Topics: pytest-bdd, python
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyTestBDDAutomation
Behavior Driven Python with pytest-bdd
# Setup
### Operating System : Windows 10
## Install Python

## Install PIP
Download get-pip.py -- https://bootstrap.pypa.io/get-pip.py
Run the below commands:
python get-pip.py
Upgrade Pip:
pip install -U pip
## Run below commands:
pip install -U virtualenv

python -m virtualenv venv

venv\Scripts\activate.bat

## Installing PyTest
Running below command from Terminal (CMD Line)
pip install -U pytest

##### Check that you installed the correct version:

## Installing PyTest-BDD
##### Running below command from Terminal (CMD Line)
pip install pytest-bdd

We can add in our project:
