Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

v0.0.5 #9

Merged
merged 10 commits into from
Oct 15, 2019
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ python:
- '3.6'
script:
- python setup.py -q install

jobs:
include:
- stage: deploy
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ Apache License Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

# Changes

## Changes in version 0.0.5

* fixed problem with importing of LogCapture

## Changes in version 0.0.4

* fixed bug with handling of skip status of a test
Expand Down
7 changes: 5 additions & 2 deletions nose_reportportal/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
import traceback
from nose.plugins.base import Plugin
from nose.plugins.logcapture import MyMemoryHandler
from nose.plugins.skip import SkipTest
from nose import SkipTest
from nose.plugins.skip import Skip
from nose.plugins.logcapture import LogCapture
from nose.plugins.deprecated import DeprecatedTest
from .service import NoseServiceClass

Expand All @@ -34,6 +36,7 @@


log = logging.getLogger(__name__)
log.addHandler(logging.NullHandler())
# Disabled because we've already had a overloaded capturing of the logs
LogCapture.enabled = False

Expand All @@ -52,7 +55,7 @@ def __init__(self, extended_filters=None):

class ReportPortalPlugin(Plugin):
can_configure = True
score = SkipTest.score + 1
score = Skip.score + 1
status = {}
enableOpt = None
name = "reportportal"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read_file(fname):
return f.read()


version = '0.0.4'
version = '0.0.5'
tar_url = 'https://github.com/reportportal/agent-python-nosetests'


Expand Down