A simple wrapper for kqueue VNODE (for now) functionality to be asyncio compatible.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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)