Giter Club home page Giter Club logo

django_sass_finder's People

Contributors

deeprave avatar tru-dev avatar

Watchers

 avatar

django_sass_finder's Issues

Test failures (list all/find not all)

Tests test_finder_list_all and test_finder_find_not_all fail with poetry run pytest.

test_finder_list_all:

    def test_finder_list_all(basedir):
        f = ScssFinder()
        for filename in FIXTURE_CONTENT.keys():
            # change ext to .css
            filename = filename.rsplit('.', maxsplit=1)[0] + '.css'

            f._serve_static = True
            found = f.find(filename, all=True)
            assert isinstance(found, list)
>           assert len(found) == 1
E           assert 0 == 1
E            +  where 0 = len([])

tests\test_finder_find.py:101: AssertionError

test_finder_find_not_all:

    def test_finder_find_not_all(basedir):
        f = ScssFinder()
        for filename in FIXTURE_CONTENT.keys():
            # change ext to .css
            filename = filename.rsplit('.', maxsplit=1)[0] + '.css'

            f._serve_static = True
            found = f.find(filename, all=False)
            # returns the absolute path of the found file(s)
>           assert isinstance(found, str)
E           assert False
E            +  where False = isinstance([], str)

tests\test_finder_find.py:119: AssertionError

I looked into the issue, and it seems to be Windows path stuff (looks for admin/admin-site.css but the dictionary holds admin\admin-site.css). Should be a simple fix, though.

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.