Pythonic task execution library for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks
Overall
score
96%
Build a command-line task management system that organizes various development workflow tasks into logical namespaces.
Your system should organize tasks into the following structure:
Database tasks - Operations for database management
db.migrate - Run database migrationsdb.seed - Seed the database with initial datadb.reset - Reset the database (clear all data)Testing tasks - Operations for running tests
test.unit - Run unit teststest.integration - Run integration teststest.all - Run all testsDeployment tasks - Operations for deploying the application
deploy.staging - Deploy to staging environmentdeploy.production - Deploy to production environmentAll tasks should accept a context parameter and print a message indicating what operation they would perform (no actual implementation needed).
The system should support:
db.migrate)@generates
# Main collection that organizes all tasks
# Should be importable and executable via CLIProvides task execution and organization capabilities.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-invokedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10