Skip to content

Commit

Permalink
test(meta): move meta suite into unit tests
Browse files Browse the repository at this point in the history
They're always run with it anyway, so it makes no difference.
  • Loading branch information
nejch authored and JohnVillalovos committed Mar 13, 2023
1 parent 7a8a862 commit 847004b
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Expand Up @@ -21,7 +21,6 @@ ignore_errors = true
module = [
"tests.functional.*",
"tests.functional.api.*",
"tests.meta.*",
"tests.smoke.*",
]
disable_error_code = ["no-untyped-def"]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -24,7 +24,7 @@ isolated_build = True
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-test.txt
commands =
pytest tests/unit tests/meta {posargs}
pytest tests/unit {posargs}

[testenv:black]
basepython = python3
Expand Down Expand Up @@ -91,7 +91,7 @@ commands = sphinx-build -n -W --keep-going -b html docs build/sphinx/html
[testenv:cover]
commands =
pytest --cov --cov-report term --cov-report html \
--cov-report xml tests/unit tests/meta {posargs}
--cov-report xml tests/unit {posargs}

[coverage:run]
omit = *tests*
Expand Down

0 comments on commit 847004b

Please sign in to comment.