Giter VIP home page Giter VIP logo

Comments (8)

PeterJCLaw avatar PeterJCLaw commented on June 16, 2024 1

Another idea here might be to break the slow tests out into their own CI job. That would mean that things like coverage, linting & the main suite of tests could give their feedback sooner, while still running the slower tests.

from asttokens.

alexmojaki avatar alexmojaki commented on June 16, 2024

Because CI has ASTTOKENS_SLOW_TESTS=1.

from asttokens.

alexmojaki avatar alexmojaki commented on June 16, 2024

It looks like #128 does speed it up, which makes sense because the main slow test runs twice, once for ast and once for astroid. So getting that working would help. If it's possible to effectively use more than 2 workers then parametrising that test could help further.

It might also help to run the slow tests without coverage, and if that causes coverage to drop then we should be writing normal deterministic tests to fill the gap.

from asttokens.

PeterJCLaw avatar PeterJCLaw commented on June 16, 2024

It looks like the initial speedup from #128 was in part due to it running without coverage. That was actually what was failing. Adding in pytest-cov fixes that, but the tests are slow again. I like the idea of the slow tests running without coverage.

Separately it looks like the slow tests are in fact all in a single test case, which means that parallelisation can only help so far with that. Adding in parameterized kinda helps with that, however the ordering of the sys.modules isn't stable and the tests can flake out. Applying sorting helps, but I'm not sure if we'd see divergences in the members of sys.modules between workers too. Needs more investigation.

from asttokens.

alexmojaki avatar alexmojaki commented on June 16, 2024

It's a single test method, but it lives in TestMarkTokens which is subclassed by TestAstroid so there are two versions of the test that run. But I don't know how the division of tests works, so maybe a single worker was allocated both of them.

from asttokens.

PeterJCLaw avatar PeterJCLaw commented on June 16, 2024

pytest-xdist has a number of strategies for worker allocation. My understanding of the default is that workers for tests are allocated in groups on the fly rather than upfront, so I think in general the two long tests should end up on separate workers. I think we could also explicitly configure those tests to end up on separate workers with pytest marks. Docs for the strategies are at https://pytest-xdist.readthedocs.io/en/stable/distribution.html

from asttokens.

PeterJCLaw avatar PeterJCLaw commented on June 16, 2024

Ah, we might want to be using --dist worksteal if we see highly variable times.

from asttokens.

PeterJCLaw avatar PeterJCLaw commented on June 16, 2024

Is the --junitxml=./rspec.xml used for anything? I can't see a use for it, but I don't know if it's somehow implicitly needed by coveralls or something.

from asttokens.

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.