- Видео 72
- Просмотров 252 709
Kumar'S
США
Добавлен 20 фев 2020
Tech Tutorials & more.
DevOps: How to Use Docker in Your Jenkins Pipeline Job | Docker Plugin
- By leveraging Docker in combination with Jenkins, you can enhance the flexibility, scalability, and efficiency of your continuous integration and deployment(CI/CD) workflows. Using Docker with Jenkins offers several advantages for continuous integration and deployment.
- Why Use Docker for Jenkins Builds:
Docker's lightweight nature and fast startup time contribute to faster build and test cycles. With Docker, you can easily spin up containers, run tests, and tear them down quickly, leading to improved overall development speed and productivity.
- In this video lets see how to use docker with Jenkins Pipeline Jobs. Note that you will need to install docker in the host where you will be run...
- Why Use Docker for Jenkins Builds:
Docker's lightweight nature and fast startup time contribute to faster build and test cycles. With Docker, you can easily spin up containers, run tests, and tear them down quickly, leading to improved overall development speed and productivity.
- In this video lets see how to use docker with Jenkins Pipeline Jobs. Note that you will need to install docker in the host where you will be run...
Просмотров: 6 921
Видео
DevOps: CI-CD Pipeline For .net Project | Jenkins Dockerize & Run Image
Просмотров 9 тыс.Год назад
How To Use Jenkins to Dockerize a .net application, and Run Image Pulling Code From Cloud Repo GitHub. Note that, for doing docker build you don't need dotnet on the machine, the agent where the build is to be run should have docker installed. Student should be able to connect the dots and do other stuffs like push to github, or running in another VM using SSH-agent or ssh-steps plugin. About J...
Pytest Tutorial: Testing API Token Authentication | Rest API Testing With Pytest
Просмотров 2,7 тыс.Год назад
Python Pytest: How to test Rest API With Token Authentication Tokens are typically used to grant access to a specific resource or endpoint, and they may expire or be revoked based on certain conditions. To test API with tokens, testers should have a clear understanding of the token-based authentication and authorization process, including the type of tokens used (e.g. OAuth2 access tokens, JWTs...
Unlock the Power of Docker for Linux: Step-by-Step Easy Installation Guide
Просмотров 299Год назад
Docker Tutorial for Beginners. In this video, we walk you through the step-by-step process of installing Docker on Linux(Ubuntu). - About Docker: Docker is an open-source platform that simplifies the process of building, packaging, and deploying applications. It utilizes containerization technology to create lightweight, isolated environments called containers. Docker is a powerful tool that al...
Jenkins Installation: How To Install Jenkins On Ubuntu Linux
Просмотров 1,2 тыс.2 года назад
How To Jenkins Installation on Linux Ubuntu VM. In this Jenkins installation video, we will see how to configure the system and install Jenkins. Jenkins is a opensource tool used for Continuous Integration, Continuous Delivery/Deployment and also an orchestration tool. It is an automation server which will automate the tasks such as building, release, test & deploy software application. I'll wa...
GIT: Merge Vs Rebase Demo ~ What is git merge ~ git rebase
Просмотров 3672 года назад
Lets look into whats the difference between git merge and git rebase with a simple visual demo. git merge and rebase are one of the most challenging to understand concepts in GIT. In simple terms - Merging preserves the entire history of your repository commits, while rebasing creates a linear history by moving your commits from source branch onto the tip of target branch. Sound easy, lets look...
Jenkins CI/CD: Deploy to Remote Server(Tomcat) ~ SSH Steps Plugin
Просмотров 4,8 тыс.2 года назад
How To deploy war to Remote Tomcat Server using SSH Steps plugin. In this video, we are going to see how to work with SSH Steps plugin and how you can use in Jenkins. The servers used are Ubuntu running Jenkins, and remote server is also Ubuntu20. Pls do like and subscribe, and comment about the video session. 🙏🙏 Thanks! Jenkins Installation Windows10: ruclips.net/video/G68IE2XqWLA/видео.html V...
Jenkins CI/CD: Run Tests With Code From GitHub With Allure Reporting ~ DevOps Pipeline
Просмотров 2,2 тыс.2 года назад
Lets look into a Jenkins CI/CD pipeline for API Tests with with Junit test report, and also Allure reports. This job runs on an Jenkins slave/agent, and the tests are executed using a bash script. So we can see how to run bash script from Jenkins Pipeline. Hit the Like button if this was helpful! Thanks Detail video about SSH Keys & SSH-agent Plugin: ruclips.net/video/i70KZnEmgqw/видео.html Jen...
Jenkins CI/CD: Why Use Declarative Pipeline ~ Scripted Vs Declarative ~ DevOps
Просмотров 5042 года назад
Jenkins Pipeline and Why use Declarative piepline In Jenkins, a pipeline is a set of instructions that defines a series of stages for building, testing, and deploying an application. It allows for the automation of the entire software delivery process, from code check-in to production deployment, and provides a visual representation of the workflow. Scripted and Declarative pipelines are two ty...
Jenkins: Cobertura Code Coverage for Python Code
Просмотров 3,3 тыс.2 года назад
Using Cobertura Code Coverage with Jenkins and Python Code THANKS A LOT FOR WATCHING!! Please give this video a 👍 THUMBS UP if you found it helpful and 📢 COMMENT if you would like to say something or ask a question. This will motivate me to make more such videos 🙏🙏 BTW, DON'T FORGET TO LIKE & SUBSCRIBE!! Jenkins Installation Windows10: ruclips.net/video/G68IE2XqWLA/видео.html VirtualBox Install...
Pytest Tutorial: How To Create Project With VirtualEnv in Pycharm
Просмотров 4052 года назад
PyCharm is one of the most popular IDE for Python coding. In this video lets us see how to create and start a new project in PyCharm with Virtual environment. To Install Pycharm, download Pycharm from below official link, select "Community" to use for free: www.jetbrains.com/pycharm/download Thanks and Happy Learning! THANKS A LOT FOR WATCHING!! Please give this video a 👍 THUMBS UP if you found...
Python Pyenv: Multiple Python Versions In Linux Using Pyenv
Просмотров 6852 года назад
Python Tutorial: How To Install Pyenv In Linux. With Pyenv we can have multiple Python version in the same OS. This video session will show us about how to install “Pyenv” for Ubuntu Linux OS and how to use the Pyenv to create virtual env. First install pre-req as root user - github.com/pyenv/pyenv#prerequisites In this video, I am installing for a particular user jenkins, but you can install f...
Pytest Tutorial: Data Driven Tests With Pytest-BDD Scenario Outline | BDD With Python Pytest
Просмотров 5 тыс.2 года назад
Behavior-driven development (BDD) is an Agile software development methodology we use to write automation tests. We use the popular Pytest-BDD framework in this session to write our test. In this session we will see how to do Data Driven Tests using Pytest-BDD framework. THANKS A LOT FOR WATCHING!! Please give this video a 👍 THUMBS UP if you found it helpful and 📢 COMMENT if you would like to s...
GitBash SSH connection to BitBucket | Add SSH Key To Clone From BitBucket
Просмотров 6 тыс.2 года назад
Welcome, in this video we'll see how to generate SSH-Keys in Windows GitBash. And then add the SSH keys to BitBucket/GitHub. Also we talk about known hosts and SSH finger prints. Note that, you will need git and git bash installed in the Windows machine in order to work smoothly with git servers like BitBucket or GitHub. Pls do like and subscribe, and comment about this video session. Thanks! D...
Pytest Tutorial: BDD With Pytest-BDD | Writing our Python Tests with Pytest and BDD
Просмотров 16 тыс.2 года назад
Behavior-driven development (BDD) is an Agile software development methodology we use to write automation tests. We use the popular Pytest-BDD framework in this session to write our first test. THANKS A LOT FOR WATCHING!! Please give this video a 👍 THUMBS UP if you found it helpful and 📢 COMMENT if you would like to say something or ask a question. This will motivate me to make more such videos...
Git: What is Detached Head Scenario & Fix
Просмотров 3,5 тыс.2 года назад
Git: What is Detached Head Scenario & Fix
DevOps:(P2/2)CI-CD Pipeline With Jenkins, Python, Docker, GitHub, DockerHub
Просмотров 9 тыс.2 года назад
DevOps:(P2/2)CI-CD Pipeline With Jenkins, Python, Docker, GitHub, DockerHub
DevOps:(P1/2)CI-CD Pipeline With Jenkins, Python, Docker, GitHub, DockerHub
Просмотров 17 тыс.2 года назад
DevOps:(P1/2)CI-CD Pipeline With Jenkins, Python, Docker, GitHub, DockerHub
Using SSH Agent Plugin On Jenkins | Linux ssh-keygen command | SSH-Agent | Jenkins Windows
Просмотров 20 тыс.2 года назад
Using SSH Agent Plugin On Jenkins | Linux ssh-keygen command | SSH-Agent | Jenkins Windows
VirtualBox - Setting Static IP for Linux VM [Check Desc Also]
Просмотров 29 тыс.2 года назад
VirtualBox - Setting Static IP for Linux VM [Check Desc Also]
Software Testing: What Is QA/Testing & How To Start QA Career (2/2)
Просмотров 1032 года назад
Software Testing: What Is QA/Testing & How To Start QA Career (2/2)
Software Testing: What Is QA/Testing & How To Start QA Career(1/2)
Просмотров 1322 года назад
Software Testing: What Is QA/Testing & How To Start QA Career(1/2)
Pytest Tutorial: Data Provider Testing | Parameterization | Pass Data From File | Data Driven Tests
Просмотров 6 тыс.3 года назад
Pytest Tutorial: Data Provider Testing | Parameterization | Pass Data From File | Data Driven Tests
Python Tutorial: Install Python Modules/Packages for Virtual Env
Просмотров 3503 года назад
Python Tutorial: Install Python Modules/Packages for Virtual Env
Pytest Tutorial: Sharing Fixtures Through conftest | Pytest Fixtures
Просмотров 2,1 тыс.3 года назад
Pytest Tutorial: Sharing Fixtures Through conftest | Pytest Fixtures
Pytest Tutorial: Scope of Pytest Fixture Functions | Pytest Fixtures
Просмотров 3,3 тыс.3 года назад
Pytest Tutorial: Scope of Pytest Fixture Functions | Pytest Fixtures
Pytest Tutorial: All About Using Pytest Fixtures with examples | Pytest For Beginners
Просмотров 1,3 тыс.3 года назад
Pytest Tutorial: All About Using Pytest Fixtures with examples | Pytest For Beginners
Pytest Tutorial: Running Test with Testname | Pytest For Beginners
Просмотров 4183 года назад
Pytest Tutorial: Running Test with Testname | Pytest For Beginners
Pytest Tutorial: Marking or Grouping Test Functions| Pytest For Beginners
Просмотров 1 тыс.3 года назад
Pytest Tutorial: Marking or Grouping Test Functions| Pytest For Beginners
Pytest Tutorial: Pytest Raises Assertion
Просмотров 4,1 тыс.3 года назад
Pytest Tutorial: Pytest Raises Assertion
Thank you!
Why we use assert?
How to do it for ubuntu?
Thanks bro
Thank you alot Kumar sir. it may help to me
Thanks.
Knowing that your Indian accent is terrible , Why cannot you try to speak slowly ? look like french train called TGV. 😒 Anyway thank you for having take your time to make your tutorial.
Can we use pytest + behave
Coverage report and everything is generated but the coverage on the branch name row in a multibranch pipeline shows n/a
Error: image name or ID must be specified i got this issue during Build Operation
return success. Thanks
Welcome 👍
Thank u
you saved my life
nicely detailed video bro'
how to connect to another EC2 intance if my jenkins server is on another different EC2 instance?
hey what's the command "-k 'fixtures and not fixtures05'" how did the get files get run with this command.
Hi, the "-k" option will run tests which contain names that match the given string expression. Your example will execute tests with name "fixtures" and also exclude tests with name "fixtures05". thanks
Not good.. not clear at all
finally I was able to understand it I will continue to deepen thank you!
Thank you so much bro, you're really a life saver
hoaw is that could you please tell me how he helped you ?
these are errors and shouldn't passed in pytest
Thankyou implemented same for my Blog application which is hosted on aws ubuntu and jenkisn pipeline in local..Thankyou...once again.
Great 👍
hi sir, could you please briefly explaine about pipeline script and what are the setup we need to do in jenkins dashborad,
✅CI/CD Pipeline Course👇 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333
i have created the feature file but the steps are highlighted with yellow lines [warning] saying "Cannot find declaration to go". Im using pycharm community edition. installed gherkins plugin too. Is there a way to solve this or any plugin which will solve this?
Unfortunately no. Community editions doesnot have any support for that. thanks
The perfect video i was looking for ❤
Hey, can I get email address? I want to talk with you
Thanks worked for me..since i have only one connection that is ifcfg-enp0s3 , i edited and added those parameters you described , worked perfectly ....woooo
Great 👍
Thanks a lot, man !! No one saying about copy the public key to the authorized key. Thanks a lot
Is it possible to link a cucumber feature scenario outline with a xlsx or CSV file in pytest bdd framework
I have not tried that, its not possible out of box. Nor I find any plugins or anything for that. thanks!
Hello, if we want to run a scenario from feature file instead of step-def. How can we run that could you explain?
Not possible with Pytest BDD. thanks!
thanks for explaining the concept and problem
Very good! Thanks ⚡
Can you share git repo for this demo?
github.com/kss7/SimpleFlaskUI thanks
This is a great video and very helpful. How do you get the docker registry vs not docker hub?
Thanks. DockerHub is a hosted Docker registry, free for all. You can use DockerHub or install your own Docker registry within your network.
@@KumarS1 thanks
thanks for the video it really helps me i have a question can i run pytest-bdd in pycharm community edition? or should i use Pycharm Professional Version
You can run on any one of them. Professional version will have more features though. thanks
Nice explanation, good video! It helps.
Concise and really helpful. Thank you.
super bro, thank you
Hi Jumar do you know a tool with which I can do HTML code analysis of a python application ?
🔴Jenkins CI/CD Course🔴 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333 Thanks and see you there 🙏
🔴Jenkins CI/CD Course🔴 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333 Thanks and see you there 🙏
🔴Jenkins CI/CD Course🔴 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333 Thanks and see you there 🙏
🔴Jenkins CI/CD Pipeline Course🔴 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333 Thanks and see you there 🙏
🔴Course on Jenkins CI/CD Pipeline🔴 www.udemy.com/course/cicd-pipelines-devops-jenkins-python-docker/?referralCode=AC03DFF9ABBABBEAB333 Thanks and see you there 🙏
@Kumars how do i generate html report using cobertura
Hi Darshan, Ref: stackoverflow.com/questions/17557813/py-test-reporting-and-html-output
nice work..👍
who will write requirements.txt in github
sir how to unit testcase for web proer reoloding .
This isn't a fix. If you are in a detatched head state it is probably because they want to merge this detatched head onto main
Strong video Kumar'S thanks 😃