GithubHelp home page GithubHelp logo

Comments (1)

laurent-laporte-pro avatar laurent-laporte-pro commented on September 13, 2024

Hi Alex,

I agree with you, the tests directory should not be a package but in some situations, developers add an __init__.py file in order to define some "global" variables or functions used in the tests.
Classic usages which come in mind:

  • define the path to a resources directory.
  • define a base class for unit testing: a child of unittest.TestCase,
  • define a function to populate a database.

Of cours, one can use PyTest fixtures for that. But unittest users won't…

Actually this is a problem with setuptools.find_packages because it searches packages in all directories.

If you generate a hypothetical "demo" project, you can check the result of find_packages:

python -c "from setuptools import find_packages; print(find_packages())"
['demo', 'tests']

The workaround is to exclude the tests directory. For instance, here is how you can fix the problem for the "demo" project:

$ python -c "from setuptools import find_packages; print(find_packages(exclude=('tests',)))"
['demo']

To conclude, IMO, we can:

  • remove the tests/__init__py and let the developer adding one if he thinks it's necessary,
  • exclude the tests directory from the list of packages in the call of find_packages.

Regards,
– Laurent.

from cookiecutter-pypackage-minimal.

Related Issues (5)

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.