##// END OF EJS Templates
nix: updated to 18.03 packages....
nix: updated to 18.03 packages. - new nix structure - adjusted build problems - new generated python-packages.nix - drop setuptools - release.nix update

File last commit:

r132:f0c3b7be default
r472:c4583ce6 default
Show More
Makefile
18 lines | 453 B | text/x-makefile | MakefileLexer
.PHONY: clean test test-clean test-only
clean:
make test-clean
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -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 -vv -r xw --cov=vcsserver --cov-report=term-missing --cov-report=html vcsserver