diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index 60bde77f32c..25c2bbc6737 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -73,7 +73,8 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: gh-pages - publish_dir: ${{ env.CALLER }}/allure-history + publish_dir: allure-history + destination_dir: ${{ env.CALLER }} - name: Create job summary if: always() diff --git a/tests/filter/test_unsubscribe.py b/tests/filter/test_unsubscribe.py index ebedac1f0e2..da20b912b63 100644 --- a/tests/filter/test_unsubscribe.py +++ b/tests/filter/test_unsubscribe.py @@ -68,7 +68,12 @@ def test_filter_unsubscribe_from_101_content_topics(self): self.delete_filter_subscription({"requestId": "1", "contentFilters": _101_content_topics, "pubsubTopic": self.test_pubsub_topic}) raise AssertionError("Unsubscribe from more than 100 content topics worked!!!") except Exception as ex: - assert "exceeds maximum content topics: 100" in str(ex) + if self.node2.is_nwaku(): + assert "exceeds maximum content topics: 100" in str(ex) + elif self.node2.is_gowaku(): + assert "Bad Request" in str(ex) + else: + raise NotImplementedError("Not implemented for this node type") def test_filter_unsubscribe_with_no_content_topic(self): try: