Giter Site home page Giter Site logo

Comments (6)

gregmuellegger avatar gregmuellegger commented on August 15, 2024

It's hard to tell without any further context. I sometimes get this error message for the first query of all following tests if one previous test fails. So this might not be a problem with django-autofixture, but surfacing there since autofixture might be the first library that executes a query in your test.

Can you try to run the tests just with one single test case and see if the traceback is more meaningful?

from django-autofixture.

kxxoling avatar kxxoling commented on August 15, 2024

@gregmuellegger I go this error several times, usually there's no error with my tests. I run tests with django-nose, related configs are:

# django-nose
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
NOSE_ARGS = ['--with-spec', '--spec-color']

In my base test class, I defined some serUpClass code and tearDownClass code which might matter:

class BaseTestCase(TestCase):
    @classmethod
    def setUpClass(cls):
        super(BaseTestCase, cls).setUpClass()

        for model in cls.models:
            AutoFixture(model).create(10)

    @classmethod
    def tearDownClass(cls):
        for model in cls.models:
            model.objects.all().delete()
        super(ManagerCase, cls).tearDownClass()

BTW, I'm using django 1.8.11 and django_nose 1.4.3 and autofixture 0.12.0.

from django-autofixture.

gregmuellegger avatar gregmuellegger commented on August 15, 2024

Can you reproduce the same error if you run only one testcase?

from django-autofixture.

kxxoling avatar kxxoling commented on August 15, 2024

@gregmuellegger Sorry I cannot, it frequently that time, but be rarely later. And I haven't seen for a long time now. When I comes, I just need to rerun the tests again or twice, it would disappear.

But I almost not change my tests, only add a few new tests sometime.

from django-autofixture.

gregmuellegger avatar gregmuellegger commented on August 15, 2024

Hm, randomly failing tests are a strange thing. Let's see if it comes back :) all thumbs pressed.

from django-autofixture.

kxxoling avatar kxxoling commented on August 15, 2024

Yeah, and hard to debug. Maybe there's some race or database destroying issue, i guess.

from django-autofixture.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.