https://github.com/srinivasskc/pytestbddautomation
Behavior Driven Python with pytest-bdd
https://github.com/srinivasskc/pytestbddautomation
pytest-bdd python
Last synced: 2 months 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 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-21T05:16:26.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T06:26:10.920Z (4 months 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.pyRun the below commands:
python get-pip.pyUpgrade 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:
