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