release: version 5.4.0

This commit is contained in:
Andrii Verbytskyi 2024-12-24 20:09:27 +01:00
commit 06278ea41f
806 changed files with 10367 additions and 10321 deletions

View file

@ -54,7 +54,7 @@ clean:
# test: run test-clean and tests
test:
make test-clean
unset RC_SQLALCHEMY_DB1_URL && unset RC_DB_URL && make test-only
make test-only
.PHONY: test-clean
@ -71,7 +71,25 @@ test-only:
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
--cov-report=term-missing --cov-report=html \
--cov=rhodecode rhodecode
--cov=rhodecode rhodecode \
--ignore=rhodecode/tests/vcs_operations \
--ignore=rhodecode/tests/database
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
rhodecode/tests/vcs_operations
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
rhodecode/tests/database
.PHONY: test-simple
# test-simple: Run tests only for main test suite witout coverage
test-simple:
PYTHONHASHSEED=random \
py.test -x -vv -r xw -p no:sugar \
--ignore=rhodecode/tests/vcs_operations \
--ignore=rhodecode/tests/database
# >>> Docs commands