Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

demo #11726

Closed
wants to merge 4 commits into from
Closed

demo #11726

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ check_new_flaky_tests:
- export DD_APP_KEY=$(aws ssm get-parameter --region us-east-1 --name ci.${CI_PROJECT_NAME}.dd-app-key-qualitygate --with-decryption --query "Parameter.Value" --out text)
- datadog-ci gate evaluate
only:
- YOUR_BRANCH_HERE
- erikayasuda/demo
9 changes: 9 additions & 0 deletions .gitlab/quality-gates-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,3 +199,12 @@ build_base_venvs:


# Required jobs will appear here
contrib::dramatiq:
extends: .test_base_riot_snapshot
services:
- !reference [.test_base_riot_snapshot, services]
- !reference [.services, redis]
variables:
TEST_REDIS_HOST: redis
SUITE_NAME: dramatiq
parallel: 2
5 changes: 2 additions & 3 deletions tests/contrib/dramatiq/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,5 @@ def fn_task():
unpatch()


def test_this_is_flaky():
r = random.randint(1, 10)
assert r % 2 == 0
def test_my_flaky_test():
assert True
Loading