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
Tags v1.4.1
No related merge requests found
Pipeline #62471 passed with stages
in 1 minute and 52 seconds
...@@ -10,7 +10,7 @@ stages: ...@@ -10,7 +10,7 @@ stages:
alias: rabbitmq alias: rabbitmq
before_script: before_script:
- python setup.py install - 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 - coverage run --append -m compile_definitions
artifacts: artifacts:
paths: paths:
...@@ -56,7 +56,7 @@ unittest_epoll_python27: ...@@ -56,7 +56,7 @@ unittest_epoll_python27:
extends: .before_test extends: .before_test
image: python:2.7 image: python:2.7
before_script: before_script:
- pip install nose2 - pip install nose2 nose2[coverage_plugin]
- python setup.py install - python setup.py install
script: script:
- nose2 -F -vv - nose2 -F -vv
......
...@@ -6,7 +6,7 @@ setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availabilit ...@@ -6,7 +6,7 @@ setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availabilit
version=__version__, version=__version__,
packages=find_packages(include=['coolamqp', 'coolamqp.*']), packages=find_packages(include=['coolamqp', 'coolamqp.*']),
install_requires=['six'], install_requires=['six'],
tests_require=["pytest", "coverage"], tests_require=["pytest", "coverage", "nose2[coverage_plugin]"],
test_suite='nose2.collector.collector', test_suite='nose2.collector.collector',
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={ 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