Skip to content
Snippets Groups Projects
Commit f67c4676 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix tests

parent 8ab0b298
No related branches found
No related tags found
No related merge requests found
Pipeline #62471 passed with stages
in 1 minute and 52 seconds
......@@ -10,7 +10,7 @@ stages:
alias: rabbitmq
before_script:
- python setup.py install
- pip install --break-system-packages nose2 coverage requests yapf
- pip install --break-system-packages nose2 coverage requests yapf nose2[coverage_plugin]
- coverage run --append -m compile_definitions
artifacts:
paths:
......@@ -56,7 +56,7 @@ unittest_epoll_python27:
extends: .before_test
image: python:2.7
before_script:
- pip install nose2
- pip install nose2 nose2[coverage_plugin]
- python setup.py install
script:
- nose2 -F -vv
......
......@@ -6,7 +6,7 @@ setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availabilit
version=__version__,
packages=find_packages(include=['coolamqp', 'coolamqp.*']),
install_requires=['six'],
tests_require=["pytest", "coverage"],
tests_require=["pytest", "coverage", "nose2[coverage_plugin]"],
test_suite='nose2.collector.collector',
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment