-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of 'days' and 'only_live_offers' params for product_se…
…arch (#99) * implemented 'days' and 'only_live_offers' params for product_search * corrected implementation of 'days' param * fix spelling * misc doc fixes Co-authored-by: Alex Kaszynski <[email protected]>
- Loading branch information
1 parent
0e1e9e9
commit 59a0a5c
Showing
6 changed files
with
173 additions
and
39 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,37 @@ | ||
# Simple makefile to simplify repetitive build env management tasks under posix | ||
|
||
CODESPELL_DIRS ?= ./ | ||
CODESPELL_SKIP ?= "*.pyc,*.txt,*.gif,*.png,*.jpg,*.ply,*.vtk,*.vti,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,flycheck*,./.git/*,./.hypothesis/*,*.yml,./docs/_build/*,./docs/images/*,./dist/*,*~,.hypothesis*,./docs/examples/*,*.mypy_cache/*,*cover,./tests/htmlcov/*,*.css,*.svg" | ||
CODESPELL_IGNORE ?= "ignore_words.txt" | ||
|
||
all: doctest | ||
|
||
doctest: codespell pydocstyle | ||
|
||
codespell: | ||
@echo "Running codespell" | ||
@codespell $(CODESPELL_DIRS) -S $(CODESPELL_SKIP) -I $(CODESPELL_IGNORE) | ||
|
||
pydocstyle: | ||
@echo "Running pydocstyle" | ||
@pydocstyle pyvista | ||
|
||
doctest-modules: | ||
@echo "Runnnig module doctesting" | ||
pytest -v --doctest-modules pyvista | ||
|
||
coverage: | ||
@echo "Running coverage" | ||
@pytest -v --cov pyvista | ||
|
||
coverage-xml: | ||
@echo "Reporting XML coverage" | ||
@pytest -v --cov pyvista --cov-report xml | ||
|
||
coverage-html: | ||
@echo "Reporting HTML coverage" | ||
@pytest -v --cov pyvista --cov-report html | ||
|
||
mypy: | ||
@echo "Running mypy static type checking" | ||
mypy pyvista/core/ --no-incremental |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
lod | ||
byteorder | ||
flem |
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,6 +1,6 @@ | ||
"""Version number for keepa | ||
""" | ||
# major, minor, patch, -extra | ||
version_info = 1, 2, 1 | ||
version_info = 1, 3, 0 | ||
|
||
__version__ = '.'.join(map(str, version_info)) |
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
Oops, something went wrong.