fibonacci.py gets N as input and outputs the Nth number in the Fibonacci sequence fibonaci_test.py tests the program by passing different values to it
-
create and organize directory
-
build the wheel: python3 setup.py bdist_wheel
-
install the wheel: pip install dist/fibonacci_project-0.1-py3-none-any.whl
-
run tests: pytest --pyargs tests
This project was created as a means to learn CI/CD pipelines.