Skip to content

Commit

Permalink
test_: run baseline tests in rpc suite
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarbu15 committed Dec 19, 2024
1 parent 0849db3 commit 3021c44
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pytest-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: Pytest Lint
on:
pull_request:
branches:
- develop
- master
push:
branches:
- "test-linting"

jobs:
pytest-lint:
Expand Down
1 change: 1 addition & 0 deletions tests-functional/tests/reliability/test_contact_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
@pytest.mark.reliability
class TestContactRequests(MessengerTestCase):

@pytest.mark.rpc # until we have dedicated functional tests for this we can still run this test as part of the functional tests suite
@pytest.mark.dependency(name="test_contact_request_baseline")
def test_contact_request_baseline(self, execution_number=1):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@pytest.mark.reliability
class TestCreatePrivateGroups(MessengerTestCase):

@pytest.mark.rpc # until we have dedicated functional tests for this we can still run this test as part of the functional tests suite
@pytest.mark.dependency(name="test_create_private_group_baseline")
def test_create_private_group_baseline(self, private_groups_count=1):
self.connect_accounts_via_contact_request()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@pytest.mark.reliability
class TestOneToOneMessages(MessengerTestCase):

@pytest.mark.rpc # until we have dedicated functional tests for this we can still run this test as part of the functional tests suite
@pytest.mark.dependency(name="test_one_to_one_message_baseline")
def test_one_to_one_message_baseline(self, message_count=1):
pk_receiver = self.receiver.accounts_service.get_pubkey(self.receiver.display_name)
Expand Down

0 comments on commit 3021c44

Please sign in to comment.