fix: fixed broken tests for slack notification, added ability to run selected tests on local

This commit is contained in:
Andrii V 2025-04-03 18:22:53 +02:00
parent f602b2d5b1
commit a4ff9d4fab
2 changed files with 18 additions and 5 deletions

View file

@ -84,10 +84,19 @@ test-only:
rhodecode/tests/database
.PHONY: test-simple
# test-simple: Run tests only for main test suite witout coverage
# test-simple: Run tests only for main test suite without coverage
test-simple:
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
py.test -r xw -p no:sugar \
--ignore=rhodecode/tests/vcs_operations \
--ignore=rhodecode/tests/database
.PHONY: test-custom
# test-custom: Run tests without coverage, only run tests matching PATTERN
test-custom:
PYTHONHASHSEED=random \
py.test $(if $(PATTERN),-k "$(PATTERN)",) -vv -r xw -p no:sugar \
--ignore=rhodecode/tests/vcs_operations \
--ignore=rhodecode/tests/database