Git Office Hours : le test pour Entr'ouvert
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile 111B

123456789
  1. all: unittest lint mypy
  2. unittest:
  3. python3 -m unittest -v
  4. lint:
  5. pylint git_oh.py test.py
  6. .PHONY: lint mypy