FAIL: test_db_table (schema.tests.SchemaTests)
Traceback (most recent call last):
File “/Users/nanliu/github/django/django/test/utils.py”, line 381, in inner
return func(*args, **kwargs)
File “/Users/nanliu/github/django/tests/schema/tests.py”, line 2280, in test_db_table
self.assertForeignKeyExists(Book, “author_id”, “schema_otherauthor”)
File “/Users/nanliu/github/django/tests/schema/tests.py”, line 201, in assertForeignKeyExists
self.assertEqual(constraint_fk, (expected_fk_table, field))
AssertionError: Tuples differ: (‘schema_author’, ‘id’) != (‘schema_otherauthor’, ‘id’)
First differing element 0:
‘schema_author’
‘schema_otherauthor’
- (‘schema_author’, ‘id’)
- (‘schema_otherauthor’, ‘id’)
? +++++
Ran 13599 tests in 435.972s
FAILED (failures=1, skipped=1032, expected failures=4)
I am not sure if this is the issue that the master version has after looking in Jenkins cuz Jenkins doesn’t give too many details. And also why are so many test cases skipped? Sorry! Im new to open source and want to make some contribution to improve my skills