-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9d8d28
commit 154e1e3
Showing
5 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
====================================== | ||
Changelog for pytest-find-dependencies | ||
====================================== | ||
|
||
0.1.0 (2021-04-04) | ||
------------------ | ||
|
||
First PyPI release. | ||
|
||
New Features | ||
~~~~~~~~~~~~ | ||
* find dependencies in tests as long as they are based on the test modules | ||
themselves |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
include LICENSE | ||
include README.rst | ||
include CHANGELOG.rst | ||
include tox.ini | ||
|
||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
graft tests | ||
|
||
global-exclude __pycache__/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[metadata] | ||
license_file = LICENSE | ||
|
||
description-file = README.rst | ||
license_files = LICENSE | ||
[bdist_wheel] | ||
universal = 0 | ||
[tool:pytest] | ||
testpaths = tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.0dev" | ||
__version__ = "0.1.0" |