Giter Club home page Giter Club logo

Comments (2)

israel-lugo avatar israel-lugo commented on June 3, 2024

The problem is caused by a specific visitation order on the files. In fact, it's pure luck that it works on the other systems.

What's happening is that, even after sorting, dup_groups[0] has the 200 g1 files, and dup_groups[1] has the 3 g0 files, while expected_dup_groups[0] is in the reverse order. That is, dup_groups[0] == expected_dup_groups[1] and dup_groups[1] == expected_dup_groups[0]``.

This is due to the way lists are sorted. They are sorted lexicographically, i.e. respective elements are compared one by one until one of them is different (or one list runs out of elements). In most cases so far, by luck and/or system configuration, the first g1 elements in dup_groups have always been alphabetically higher than the first g0 ones. So g0 ends up first.

But in this case, /tmp/pytest-of-capi/pytest-28/test_find_dups_in_dirs_False_02/file140/g1 is visited first on the g1 group, and /tmp/pytest-of-capi/pytest-28/test_find_dups_in_dirs_False_02/file2/g0 is visited first on the g0 group. Since file140 comes alphabetically before file2, g1 is considered lower and sorted first.

The solution is to sort the groups internally before sorting the list of groups.

from capidup.

israel-lugo avatar israel-lugo commented on June 3, 2024

Had to force push the fixing commit as I forgot to document in the Changelog. Real commit is 37572d5.

from capidup.

Related Issues (19)

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.