Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
r3w0p committed Sep 16, 2019
1 parent 787140f commit 8ea4e77
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bobocep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """r3w0p"""
__email__ = ''
__version__ = '0.30.7'
__version__ = '0.30.8'
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
# built documents.
#
# The short X.Y version.
version = '0.30.7'
version = '0.30.8'
# The full version, including alpha/beta/rc tags.
release = '0.30.7'
release = '0.30.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.30.7
current_version = 0.30.8
tag = True

[bumpversion:file:setup.py]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author="r3w0p",
author_email='',
name='bobocep',
version='0.30.7',
version='0.30.8',
description="A fault-tolerant complex event processing engine designed "
"for edge computing in IoT systems.",
long_description=long_description,
Expand Down
6 changes: 4 additions & 2 deletions tests/test_bobocep/test_setup/test_bobo_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,8 +805,10 @@ def test_multi_composite_from_decider_to_producer_recursive(self):
producer.setup()

decider.on_receiver_event(event_a)
decider.loop()
producer.loop()

for _ in range(len(nfa_names)):
decider.loop()
producer.loop()

for handler in handlers:
self.assertEqual(2, len(handler.get_all_recent()))
Expand Down

0 comments on commit 8ea4e77

Please sign in to comment.