diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-03 06:04:53 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-03 06:04:53 -0500 |
commit | 5f1067e4ee15b31e65fd0207d6efc00cce1e5608 (patch) | |
tree | 318bbce9612334383fbd7e39b4e25927f0ad19c0 | |
parent | 535060c95b606f0c043e02a4688b4bda6f162996 (diff) | |
download | python-coveragepy-git-5f1067e4ee15b31e65fd0207d6efc00cce1e5608.tar.gz |
test: ensure columns=80 for cogging
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -31,6 +31,9 @@ setenv = # For some tests, we need .pyc files written in the current directory, # so override any local setting. PYTHONPYCACHEPREFIX= + # Cog'ing the --help output depends on the width of the terminal, + # so set it explicitly to avoid environmental interference + COLUMNS=80 commands = # Create tests/zipmods.zip @@ -74,7 +77,8 @@ deps = -r requirements/lint.pip setenv = - LINTABLE = coverage tests doc ci igor.py setup.py __main__.py + {[testenv]setenv} + LINTABLE=coverage tests doc ci igor.py setup.py __main__.py commands = python -m tabnanny {env:LINTABLE} |