An stunnel like program that utilizes the Noise protocol.
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.
 
 

14 lines
383 B

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