Makefile¶
This makefile contains targets for
Verbs¶
This section contains targets that
May have side effect
Should not have side effects should not affect nouns
helpPrint help message
Checks¶
check_allRun all checks that have not yet passed
check_formatCheck format
check_lintCheck lint
check_distCheck that distribution can be built and will render correctly on PyPi
check_docsCheck that documentation can be built
check_diffCheck that there are no untracked git changes
check_testsCheck that unit tests pass
check_toxCheck that unit tests pass in multiple environments
check_typesCheck types
Fixes¶
fix_formatFix format
Nouns¶
This section contains targets that
Should have no side effects
Must have no side effects on other nouns
Must not have any prerequisites that are verbs
Ordered first by specificity, second by name
bin/print_makefile_help.pyUpdate the script that generates the help message for this makefile
build/docs/index.htmlBuild this documentation
If it runs slow, try removing the
CLEAN_DIR_TARGETline in the recipe.