Skip to content

Commit

Permalink
Do not pkg tests as a module (conda#397)
Browse files Browse the repository at this point in the history
* prune directory

* exclude from find_pkgs
  • Loading branch information
ocefpaf authored Oct 9, 2022
1 parent 4e0a380 commit 6221399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ exclude .pre-commit-config.yaml
exclude .flake8
exclude .coveragerc
exclude .isort.cfg
exclude tests/
prune tests/
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="grayskull",
packages=find_packages(),
packages=find_packages(exclude=("tests",)),
entry_points={
"console_scripts": [
"grayskull = grayskull.__main__:main",
Expand Down

0 comments on commit 6221399

Please sign in to comment.