Skip to content

🔵 Part 3: Daily Project Workflow

This section provides step-by-step instructions for working on an existing Python project. These steps are repeatable and should be followed whenever you make changes, update dependencies, or work on project features.

IMPORTANT: Complete all of Workflow 1 and Workflow 2, before continuing.


While Working on the Project

Follow these steps when working on a professional Python project.

  1. Git pull
  2. Update and run checks/tests
  3. Build and serve documentation
  4. Run Python and/or notebooks. See Run Python or Run Notebooks
  5. Git add-commit-push
  6. Modify and debug

Important

  • Always pull the latest changes before starting to avoid merge conflicts.
  • Test your project before each git add-commit-push.
  • Make frequent commits when enhancing a project.