##// END OF EJS Templates
dependencies: bumped loosely pinned dependencies...
dependencies: bumped loosely pinned dependencies - pin contextlib2==0.6.0 - update cffi-1.13.1 - update prompt_toolkit-1.0.18 - update traitlets-4.3.3

File last commit:

r642:3f98c6ee default
r791:e098fc42 default
Show More
Makefile
23 lines | 598 B | text/x-makefile | MakefileLexer
.PHONY: clean test test-clean test-only generate-pkgs
clean:
make test-clean
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
test:
make test-clean
make test-only
test-clean:
rm -rf coverage.xml htmlcov junit.xml pylint.log result
find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
test-only:
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
--cov=vcsserver --cov-report=term-missing --cov-report=html vcsserver
generate-pkgs:
nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses"