We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
test_a
These are the tests that are overriding previously defined tests due to this problem:
meetup2apricot/tests/test_meetup_event.py
Line 126 in 5b30c13
I found this issue automatically, see other issues here
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
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:
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:
meetup2apricot/tests/test_meetup_event.py
Line 126 in 5b30c13
I found this issue automatically, see other issues here
The text was updated successfully, but these errors were encountered: