Skip to content

negadive/task_helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Helper

When you lazy enough to do simple repetitive stuff with your project tasks.

Features

  • Make branch from your task

Installation

Install dependancies with pip

  pip install -r requirements.txt

Environment Variables

To run this project, you will need to add the following environment variables to your .env file

PIVOTAL_TRACKER_PROJECT_ID

PIVOTAL_TRACKER_TOKEN

CSV_PROJECT_REPO_DIR

REPO_DIR

Usage/Examples

Help

python main.py --help

Register project

python main.py register-project $PROJECT_ID $PROJECT_NAME

Examples:

python main.py register-project 4264 disco

Make branch

python main.py mkb $TASK_ID
python main.py mkb --project=$PROJECT_ID $TASK_ID

Examples:

python main.py mkb 6969
python main.py mkb --project=4264 6969

Running Tests

To run tests, run the following command

  pytest