Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harsh-valecha/pytest_cicd_automation1
https://github.com/harsh-valecha/pytest_cicd_automation1
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harsh-valecha/pytest_cicd_automation1
- Owner: harsh-valecha
- Created: 2024-07-06T19:48:40.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-09T14:50:36.000Z (6 months ago)
- Last Synced: 2024-07-09T18:55:26.868Z (6 months ago)
- Language: JavaScript
- Size: 21.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Pytest Demo Project with Allure reporting -
![image](https://github.com/harsh-valecha/pytest_cicd_automation1/assets/119730682/b356ca33-c2f0-44df-863f-c2f98a7fd767)
Jenkins Stages for pipeline -
```
pipeline {
agent anystages {
stage('checkout') {
steps {
checkout scmGit(branches: [[name: '*/main']], extensions: [], userRemoteConfigs: [[url: 'https://github.com/harsh-valecha/pytest_cicd_automation1.git']])
}
}
stage('test'){
steps{
bat 'python -m pytest -v test_ops.py --html=report.html'
}
}
}
}
```