Skip to content

Commit

Permalink
Up pytest-asyncio version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenka42 committed May 5, 2020
1 parent 99479be commit 763be75
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements_test.txt
@@ -1,2 +1,2 @@
# gmqtt test requirements
.[test]
.[test]
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -35,7 +35,7 @@
"more-itertools>=7.0.0",
"pluggy>=0.11.0",
"py>=1.8.0",
"pytest-asyncio==0.10.0",
"pytest-asyncio>=0.12.0",
"pytest-cov>=2.7.1",
"pytest>=5.4.0",
"six>=1.12.0",
Expand Down
14 changes: 12 additions & 2 deletions tests/test_mqtt5.py
Expand Up @@ -20,8 +20,18 @@

PREFIX = 'GMQTT/' + str(time.time()) + '/'

TOPICS = (PREFIX + "TopicA", PREFIX + "TopicA/B", PREFIX + "TopicA/C", PREFIX + "TopicA/D", PREFIX + "/TopicA")
WILDTOPICS = (PREFIX + "TopicA/+", PREFIX + "+/C", PREFIX + "#", PREFIX + "/#", PREFIX + "/+", PREFIX + "+/+", PREFIX + "TopicA/#")
TOPICS = (PREFIX + "TopicA",
PREFIX + "TopicA/B",
PREFIX + "TopicA/C",
PREFIX + "TopicA/D",
PREFIX + "/TopicA")
WILDTOPICS = (PREFIX + "TopicA/+",
PREFIX + "+/C",
PREFIX + "#",
PREFIX + "/#",
PREFIX + "/+",
PREFIX + "+/+",
PREFIX + "TopicA/#")
NOSUBSCRIBE_TOPICS = (PREFIX + "test/nosubscribe",)


Expand Down

0 comments on commit 763be75

Please sign in to comment.