Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 765 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 765 Bytes

Mentorship

This project contains the codes used for the mentorship I'm giving

How this project should be used

You can clone this repository, the for each lesson given, you should access the respective directory, there it should contain the description for the exercise, and the incomplete version. After you have done you can validate with the complete version.

To help your journey, you can run the test files I've added to each lesso, see the next section on how to run the test files.

Getting Started

  • Start the vitual env
$ python -m venv .
$ source ./bin/activate
  • Installing dependencies
$ pip install -r requirements.txt

Testing

$ pip install -r requirements.test.txt
$ pytest -q ./lesson01

# or

$ ptw