Opened 3 years ago

Last modified 3 years ago

#33022 closed Bug

main-random test failures (build #8): field_deconstruction.tests.FieldDeconstructionTests and migrations.test_commands.MigrateTests — at Version 3

Reported by: Chris Jerdonek Owned by: nobody
Component: Migrations Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Chris Jerdonek)

I noticed that main-random job #8 failed recently. I don't know if these were "real" failures. The failures were (database=spatialite,bionic,python3.9)--

  • field_deconstruction.tests.FieldDeconstructionTests.test_foreign_key
  • field_deconstruction.tests.FieldDeconstructionTests.test_many_to_many_field
  • field_deconstruction.tests.FieldDeconstructionTests.test_one_to_one
  • migrations.test_commands.MigrateTests.test_migrate_partially_applied_squashed_migration
  • migrations.test_commands.MigrateTests.test_migrate_plan

The shuffle seed was 5300426296.

These recent PR's seem related: PR #14730 (ticket #32983) for the FieldDeconstructionTests ones and PR #14727 (ticket #29063) for the MigrateTests ones.

Change History (3)

comment:1 by Chris Jerdonek, 3 years ago

I narrowed down the MigrateTests failures somewhat to--

./tests/runtests.py --shuffle 5300426296 migrations.test_commands.MigrateTests migrations.test_executor.ExecutorTests
...
Ran 59 tests in 2.041s
FAILED (errors=2)
Last edited 3 years ago by Chris Jerdonek (previous) (diff)

comment:2 by Chris Jerdonek, 3 years ago

Here is a shuffle seed of the same migration tests as above, but with 4 failures:

./tests/runtests.py migrations.test_commands.MigrateTests migrations.test_executor.ExecutorTests --shuffle 3472950421
...
ERROR: test_migrate_partially_applied_squashed_migration (migrations.test_commands.MigrateTests)
ERROR: test_migrate_fake_split_initial (migrations.test_commands.MigrateTests)
ERROR: test_sqlmigrate_backwards (migrations.test_commands.MigrateTests)
FAIL: test_migrate (migrations.test_commands.MigrateTests)
...
Last edited 3 years ago by Chris Jerdonek (previous) (diff)

comment:3 by Chris Jerdonek, 3 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top