Skip to content

Commit

Permalink
💚 just run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zrquan committed Oct 15, 2024
1 parent 48aa07e commit 589890b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
shell: bash

- name: Run tests
run: uv run python -m pytest tests --cov --cov-config=pyproject.toml --cov-report=xml
run: uv run python -m pytest tests/unit --cov --cov-config=pyproject.toml --cov-report=xml

- name: Check typing
run: uv run mypy
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ passenv = PYTHON_VERSION
allowlist_externals = uv
commands =
uv sync --python {envpython}
uv run python -m pytest --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml
uv run python -m pytest --doctest-modules tests/unit --cov --cov-config=pyproject.toml --cov-report=xml
mypy

0 comments on commit 589890b

Please sign in to comment.