more readmes

This commit is contained in:
Shivan Sivakumaran 2021-09-19 11:33:32 +12:00
parent 07cd9bea86
commit 6de141dd3a
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# Learning Python
By Shivan Sivakumaran. Started 18th Setempber 2021.
In an effort to solidify my knowledge in Python as well as help others I have decided to create a collection of my Python 'learnings'.
## Introduction to Pytest
18th September 2021
Pytest is a great tool that allows us to write automated test for our code. This ensures our code is both robust and professional.
[Check it out!](https://git.chch.tech/Shivan/learning_python/src/branch/main/intro_pytest)
## What's next?

18
intro_pytest/README.MD Normal file
View File

@ -0,0 +1,18 @@
# Introduction to Pytest
By Shivan Sivakumaran. 18th September 2021
## An overview
[Pytest is a python package](https://docs.pytest.org/en/6.2.x) where we write automated tests for our coded project. The reason we write tests for our code is to ensure the code runs the way we want. Writing automated tests can also make the process of testing our code easier, faster and more consistent.
We can develop tests first, in the case of test-driven development, and then build our code while using these automated tests to ensure we are heading in the correct direction.
We can also use the tests to ensure the changes we make to the code don't cause untended errors later in the pathway of our development.
Most modern packages come with automated testing code, so it is a great way to make your code look professional.
## Further resources
- [Blog post](https://shivansivakumaran.com/coding/introduction-to-pytest/)
- [Video](https://www.youtube.com/watch?v=FNCVFNDVCCI)