diff options
author | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2023-04-19 11:23:17 +0000 |
---|---|---|
committer | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2023-04-19 11:23:17 +0000 |
commit | 364c5a8121611f814c0dc2f78832a9743ae82256 (patch) | |
tree | 1228094136fcb094f4501c15b4c64f24aa02e254 /docutils | |
parent | 6db572ed7d197072e08e6441ac1bb5a95c426d06 (diff) | |
download | docutils-364c5a8121611f814c0dc2f78832a9743ae82256.tar.gz |
tox.ini changedir to directory ``test`` to avoid path problems.
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9357 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils')
-rw-r--r-- | docutils/HISTORY.txt | 1 | ||||
-rw-r--r-- | docutils/tox.ini | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docutils/HISTORY.txt b/docutils/HISTORY.txt index e3bd4f161..8fcc9b9b9 100644 --- a/docutils/HISTORY.txt +++ b/docutils/HISTORY.txt @@ -137,6 +137,7 @@ Release 0.20 (unpublished) * tox.ini - Extracted flake8 configuration and moved to ``.flake8``. + - changedir to directory ``test`` to avoid path problems. * test/ diff --git a/docutils/tox.ini b/docutils/tox.ini index 476f8765f..34d7685f5 100644 --- a/docutils/tox.ini +++ b/docutils/tox.ini @@ -5,9 +5,10 @@ envlist = py{37,38,39,310,311} [testenv] allowlist_externals = find +changedir = test commands = find . -type f -name "*.pyc" -delete - python test/alltests.py + python alltests.py [testenv:style] deps = |