Skip to content

Commit

Permalink
-v in pytest args (#105)
Browse files Browse the repository at this point in the history
Make pytest output more readable
  • Loading branch information
itrharrison authored Feb 28, 2023
1 parent c84d6a9 commit 8663822
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
requires =
tox-conda
setuptools >= 30.3.0
pip >= 19.3.1
setuptools >= 30.3.0
pip >= 19.3.1
envlist =
py{37,38,39,310}-test{,-all}{,-latest,-oldest}{,-cov}
codestyle
Expand Down Expand Up @@ -47,13 +47,13 @@ extras =
commands =
pip freeze
cobaya-install planck_2018_highl_plik.TTTEEE_lite_native --no-set-global
!cov: pytest --pyargs soliket {posargs}
cov: pytest --pyargs soliket --cov soliket --cov-report=xml --cov-config={toxinidir}/setup.cfg {posargs}
!cov: pytest -v --pyargs soliket {posargs}
cov: pytest -v --pyargs soliket --cov soliket --cov-report=xml --cov-config={toxinidir}/setup.cfg {posargs}

[testenv:codestyle]
skip_install = true
conda_env =
changedir = .
description = check code style, e.g. with flake8
deps = flake8
commands = flake8
commands = flake8

0 comments on commit 8663822

Please sign in to comment.