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

Some tests are skipped due to duplicate names #1

Open
code-review-doctor opened this issue Feb 21, 2022 · 0 comments · May be fixed by #2
Open

Some tests are skipped due to duplicate names #1

code-review-doctor opened this issue Feb 21, 2022 · 0 comments · May be fixed by #2

Comments

@code-review-doctor
Copy link

Test names must be unique per scope otherwise the second test overrides the first one with the same name.

For example if you had a test file that does:

def test_a():
    pass

def test_a():
    pass

Then only the second test_a will be ran. More details here.

These are the tests that are overriding previously defined tests due to this problem:

def test_featured_missing(paid_meetup_event):

I found this issue automatically, see other issues here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant