A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile 414 B

1234567891011121314
  1. PROJNAME=aiokq
  2. VIRTUALENV ?= virtualenv-3.7
  3. VRITUALENVARGS =
  4. FILES=$(PROJNAME)/__init__.py
  5. test:
  6. (echo $(FILES) | entr sh -c 'python -m coverage run -m unittest $(PROJNAME) && coverage report --omit=p/\* -m -i')
  7. test-noentr:
  8. python -m coverage run -m unittest $(PROJNAME) && coverage report --omit=p/\* -m -i
  9. env:
  10. ($(VIRTUALENV) $(VIRTUALENVARGS) p && . ./p/bin/activate && pip install -r requirements.txt)