Skip to content

Commit

Permalink
Fix Workflow Action
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrous committed Aug 11, 2023
1 parent f041cfe commit 11a08df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-poetry-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
python-version:
required: false
description: "The python version to use"
default: "3.11"
default: "3.10"

runs:
using: "composite"
Expand Down
9 changes: 3 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
[tox]
skipsdist = true
envlist = py38, py39, py310, py311
envlist = py310

[gh-actions]
python =
3.8: py38
3.9: py39

3.10: py310
3.11: py311

[testenv]
passenv = PYTHON_VERSION
allowlist_externals = poetry
commands =
pip install -r requirements.dev.txt
pip install .
poetry install -v
pytest --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml --log-level=INFO
poetry run pre-commit run --all-files

0 comments on commit 11a08df

Please sign in to comment.