Git Office Hours : le test pour Entr'ouvert
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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