diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb217dfa..5ca31def 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: python -m pip install -U pip - name: install requirements run: | - python -m pip install pytest + python -m pip install pytest pytest-coverage coverage python -m pip install . - name: get pip cache dir id: pip-cache diff --git a/setup.py b/setup.py index c690a639..ad6f9bc5 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ long_description = f.read() setup( name="shopcube", # Required - version="4.3.2", # Required + version="4.4.0", # Required description="E-commerce solution", # Optional long_description=long_description, # Optional long_description_content_type="text/markdown", # Optional (see note above) diff --git a/tox.ini b/tox.ini index 64601937..058e3397 100644 --- a/tox.ini +++ b/tox.ini @@ -10,5 +10,5 @@ skip_missing_interpreters=true changedir = ./src/shopcube commands = - coverage run --branch --source=./src/shopcube -m pytest ./ - coverage report + cd ./src/shopcube + python -m pytest ./