##// END OF EJS Templates
deps: bumped psycopg2==2.10.0 for python 3.13 compat
deps: bumped psycopg2==2.10.0 for python 3.13 compat

File last commit:

r5607:39b20522 default
r5621:c6f79eaa default
Show More
conftest.py
29 lines | 1.1 KiB | text/x-python | PythonLexer
tests: fixed test suite for celery adoption
r5607 # Copyright (C) 2010-2024 RhodeCode GmbH
tests: fixed all tests for python3 BIG changes
r5087 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
tests: fixed test suite for celery adoption
r5607 import pytest # noqa
tests: fixed all tests for python3 BIG changes
r5087 import logging
tests: fixed test suite for celery adoption
r5607 import collections
import rhodecode
tests: fixed all tests for python3 BIG changes
r5087
log = logging.getLogger(__name__)
tests: fix httpbin port, within a container we use internal docker network so port is not exposed, we should call httpbin directly
r5153 # Docker image running httpbin...
HTTPBIN_DOMAIN = 'http://httpbin'
HTTPBIN_POST = HTTPBIN_DOMAIN + '/post'