An attempt at adding UDP support to aiosocks. Untested due to lack of server support.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

15 rindas
391 B

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