Skip to content

Latest commit

 

History

History

1-makefile

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Makefile

In this exercise, we will automate the task of installing packages, linting, formatting and testing using Makefile.

  1. Create a virutal environment.
python -m venv ~/practical-ops/exercise/1-makefile-exercise
  1. Activate the virtual environment.
source ~/practical-ops/exercise/1-makefile-exercise/bin/activate
  1. Continuous Integration using Makefile
make install
make lint
make format
make test