Show More
@@ -4,7 +4,7 b'' | |||||
4 |
|
4 | |||
5 | clean: |
|
5 | clean: | |
6 | make test-clean |
|
6 | make test-clean | |
7 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';' |
|
7 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' | |
8 |
|
8 | |||
9 | test: |
|
9 | test: | |
10 | make test-clean |
|
10 | make test-clean | |
@@ -15,7 +15,9 b' test-clean:' | |||||
15 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' |
|
15 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' | |
16 |
|
16 | |||
17 | test-only: |
|
17 | test-only: | |
18 | PYTHONHASHSEED=random py.test -vv -r xw -p no:sugar --cov=vcsserver --cov-report=term-missing --cov-report=html vcsserver |
|
18 | PYTHONHASHSEED=random \ | |
|
19 | py.test -x -vv -r xw -p no:sugar \ | |||
|
20 | --cov=vcsserver --cov-report=term-missing --cov-report=html vcsserver | |||
19 |
|
21 | |||
20 | generate-pkgs: |
|
22 | generate-pkgs: | |
21 | nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses" |
|
23 | nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses" |
General Comments 0
You need to be logged in to leave comments.
Login now