diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ clean: make test-clean - find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';' + find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' test: make test-clean @@ -15,7 +15,9 @@ test-clean: find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' test-only: - PYTHONHASHSEED=random py.test -vv -r xw -p no:sugar --cov=vcsserver --cov-report=term-missing --cov-report=html vcsserver + 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"