The CodingDojo FizzBuzz kata in Python3 using Pytest:
- CodingDojo Kata - https://codingdojo.org/kata/FizzBuzz/
- Write a program that prints the numbers from 1 to 100.
- Except for:
- multiples of three print "Fizz" instead of the number
- multiples of five print "Buzz".
- numbers which are multiples of both three and five print "FizzBuzz".
Use VSCode Test Explorer to detect and easily run tests as they were developed
- pytest
- pytest-cov
pip install -r requirements.txt./test.sh