Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 754 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 754 Bytes

Tasker

Start the project

You can use docker or install python 3.10 on your local machine.

First you need to access to the container

docker build -t tasker .

Run the project in windows

docker run --rm --env-file .env -p 80:80 -it -v ${PWD}/tasker:/app/tasker -v ${PWD}/templates:/app/templates -v ${PWD}/tests:/app/tests tasker bash

Start testing

You need to install the test dependencies

pip install .[test]

Then to run the tests you can execute

coverage run -m pytest tests/ 

FAQ

If fails to run the program you need to execute

pip install .

If you want to see the report generated

coverage report -m