-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from reef-technologies/pytest_apiver
use pytest-apiver package
- Loading branch information
Showing
5 changed files
with
4 additions
and
109 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
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 was deleted.
Oops, something went wrong.
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,4 +1,3 @@ | ||
from .apiver_fixtures import * # noqa: F401, F403 | ||
# COOKIECUTTER{%- if cookiecutter.is_django_package == "y" -%} | ||
from .django_fixtures import * # noqa: F401, F403 | ||
# COOKIECUTTER{%- endif %} |
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,2 +1,2 @@ | ||
def test_apiver_exports(apiver_deps): | ||
assert sorted(name for name in dir(apiver_deps) if not name.startswith("_")) == [] | ||
def test_apiver_exports(apiver_module): | ||
assert sorted(name for name in dir(apiver_module) if not name.startswith("_")) == [] |