Browse Source

swapped pytest random plugin to a more activly supported one

xmlparsing
Holger Frey 4 years ago
parent
commit
0e605c4943
  1. 4
      Makefile
  2. 2
      pyproject.toml

4
Makefile

@ -57,10 +57,10 @@ lint: ## reformat with black and check style with flake8 @@ -57,10 +57,10 @@ lint: ## reformat with black and check style with flake8
flake8 --ignore E231,W503,E402 sensospot_data tests
test: ## run tests quickly with the default Python
pytest tests -x --disable-warnings --random-order --failed-first
pytest tests -x --disable-warnings --failed-first
coverage: ## full test suite, check code coverage and open coverage report
pytest tests --random-order --random-order-bucket=global --cov=sensospot_data
pytest tests --cov=sensospot_data
coverage html
$(BROWSER) htmlcov/index.html

2
pyproject.toml

@ -35,7 +35,7 @@ test = [ @@ -35,7 +35,7 @@ test = [
"pytest >=4.0.0",
"pytest-cov",
"pytest-mock",
"pytest-random-order >=1.0.0",
"pytest-randomly >=3.5.0",
"tox",
]
dev = [

Loading…
Cancel
Save