Upgrade to Pro — share decks privately, control downloads, hide ads and more …

First steps into the testing world of Python

First steps into the testing world of Python

At first sight, tests may seem confusing and even a bit scary. There are many tools, multiple test levels, different approaches, and techniques. In this talk I want to share my 30-days report of learning to test Python applications; the challenges I found, some cool resources that helped me, and the questions I had and the ones I still have.

Katyanna Moura

April 09, 2019
Tweet

More Decks by Katyanna Moura

Other Decks in Programming

Transcript

  1. Repetitive is boring, boring leads to mistakes and makes you

    look for a different job by the end of the week. Ham Vocke
  2. Area of circle, using radius The area of a circle

    is equal to its radius squared then multiplied by pi. A = π(r**2) ! Radius must be a real number. ! Radius cannot be negative.
  3. Integration PyTest Selenium nose TDD BDD DDT ATDD Black-box Hypothesis

    Property-based Mock Maintainability Test Pyramid Continuous Integration ?