add new dev test command
This commit is contained in:
parent
0bd73dc4a9
commit
c4ee2591f1
1 changed files with 13 additions and 1 deletions
14
Makefile
14
Makefile
|
|
@ -123,7 +123,19 @@ test-fast:
|
|||
PYTHONHASHSEED=0 PYTHONWARNINGS=ignore py.test -n 4 -q -p no:sugar --tb=short \
|
||||
--ignore=rhodecode/apps/file_store/tests \
|
||||
--ignore=rhodecode/tests/vcs_operations \
|
||||
--ignore=rhodecode/tests/database
|
||||
--ignore=rhodecode/tests/database \
|
||||
-k "not (test_api_merge_pull_request or test_api_merge_pull_request_as_another_user or (test_filestore_backends and objectstore) or test_merge_pull_request_enabled)"
|
||||
|
||||
|
||||
.PHONY: test-dev
|
||||
# test-dev: Run tests skipping known problematic tests (merge PR, objectstore backend issues)
|
||||
test-dev:
|
||||
PYTHONHASHSEED=random \
|
||||
py.test -r xw -p no:sugar \
|
||||
--ignore=rhodecode/tests/vcs_operations \
|
||||
--ignore=rhodecode/tests/database \
|
||||
-k "not (test_api_merge_pull_request or test_api_merge_pull_request_as_another_user or (test_filestore_backends and objectstore) or test_merge_pull_request_enabled)" \
|
||||
rhodecode
|
||||
|
||||
# >>> Docs commands
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue