Updates options and fixes pytest options
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good

This commit is contained in:
2022-01-21 21:05:30 -06:00
parent 4fa7d61a9a
commit 432895a776
2 changed files with 41 additions and 41 deletions

View File

@@ -9,7 +9,7 @@ python = "^3.8,<3.10"
pdme = "^0.0.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest = ">=6"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
mypy = "^0.931"
@@ -20,5 +20,5 @@ build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--junitxml pytest.xml --cov pdme --cov-report=xml:coverage.xml --cov-fail-under=90 --cov-report=html"
addopts = "--junitxml pytest.xml --cov deepdog --cov-report=xml:coverage.xml --cov-fail-under=90 --cov-report=html"
junit_family = "xunit1"