marrow / mailer

A light-weight, modular, message representation and mail delivery framework for Python.
MIT License
279 stars 62 forks source link

Exclude `test`, not `tests` #88

Closed jwodder closed 4 years ago

jwodder commented 4 years ago

This project setup.py currently contains the line:

packages = find_packages(exclude=['examples', 'tests']),

However, there are no directories named examples and tests to exclude; the correct names are example and test. As a result, the test directory is currently included in the project's built wheel files, which is generally not what you want. This PR changes the line above to exclude example and test instead and also to exclude all directories under test.

codecov[bot] commented 4 years ago

Codecov Report

Merging #88 into develop will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff            @@
##           develop      #88   +/-   ##
========================================
  Coverage    53.43%   53.43%           
========================================
  Files           25       25           
  Lines         1252     1252           
========================================
  Hits           669      669           
  Misses         583      583

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4208b07...1053d35. Read the comment docs.