Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Some tests are skipped due to duplicate names #67

Open
code-review-doctor opened this issue Feb 21, 2022 · 1 comment
Open

Some tests are skipped due to duplicate names #67

code-review-doctor opened this issue Feb 21, 2022 · 1 comment

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_list_url_is_resolves(self):

def test_list_url_is_resolves(self):

def test_list_url_is_resolves(self):

def test_list_url_is_resolves(self):

def test_event_model(self):

I found this issue automatically, see other issues here

@github-actions
Copy link

Message that will be displayed on users' first issue

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

Successfully merging a pull request may close this issue.

1 participant