diff --git a/.github/workflows/cli-coverage.yml b/.github/workflows/cli-coverage.yml index fc0d598..8914316 100644 --- a/.github/workflows/cli-coverage.yml +++ b/.github/workflows/cli-coverage.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-python@v1 with: - python-version: '3.8' + python-version: '3.10' - name: Install dev dependancies run: if [ -f requirements/requirements-dev.txt ]; then pip install -r requirements/requirements-dev.txt; fi @@ -21,7 +21,7 @@ jobs: - run: pip install . - name: Run tests - run: coverage run -m pytest tests + run: coverage run -m pytest - name: build coverage run: coverage html -i