diff options
| author | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-04-04 18:33:42 +0000 |
|---|---|---|
| committer | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-04-04 18:33:42 +0000 |
| commit | 4d259e9fb712f03443afa11d4b31361c9b44e537 (patch) | |
| tree | 4fb08c259125129c434cbcb819ab697b9e2dc756 | |
| parent | df04a0e7343647efc61b93474e997ca7ac3a55b8 (diff) | |
| download | docutils-4d259e9fb712f03443afa11d4b31361c9b44e537.tar.gz | |
FIX stylesheet paths are wrong for css-files symlinked into test/.../data
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8663 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
| -rw-r--r-- | docutils/docs/dev/release.txt | 12 | ||||
| -rw-r--r-- | sandbox/infrastructure/releasing-log.txt | 13 |
2 files changed, 9 insertions, 16 deletions
diff --git a/docutils/docs/dev/release.txt b/docutils/docs/dev/release.txt index 474bd9a2f..c53f87eea 100644 --- a/docutils/docs/dev/release.txt +++ b/docutils/docs/dev/release.txt @@ -53,9 +53,8 @@ Releasing (post 2020) python -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils - cp -r ../docutils-code/docutils/test . + cp -Lr ../docutils-code/docutils/test . python2 test/alltests.py - # IGNORE stylesheet path differences ? python -m pip uninstall docutils deactivate ; cd .. ; rm -r du2 @@ -67,9 +66,8 @@ Releasing (post 2020) python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps docutils - cp -r ../docutils-code/docutils/test . + cp -Lr ../docutils-code/docutils/test . python test/alltests.py - # IGNORE stylesheet path differences ? python -m pip uninstall docutils deactivate ; cd .. ; rm -r du3 @@ -92,17 +90,15 @@ Releasing (post 2020) export PYTHONPATH= ; . bin/activate pip install --no-deps docutils - cp -r ../docutils-code/docutils/test . + cp -Lr ../docutils-code/docutils/test . python test/alltests.py - # css paths fail python2 -m virtualenv du2 ; cd du2 export PYTHONPATH= ; . bin/activate pip install --no-deps docutils - cp -r ../docutils-code/docutils/test . + cp -Lr ../docutils-code/docutils/test . python test/alltests.py - # css paths fail * Notify to docutils-developer and user. diff --git a/sandbox/infrastructure/releasing-log.txt b/sandbox/infrastructure/releasing-log.txt index 92aa3e8e1..4c507c7fc 100644 --- a/sandbox/infrastructure/releasing-log.txt +++ b/sandbox/infrastructure/releasing-log.txt @@ -12,18 +12,15 @@ Problems ======== * If docutils is installed into virtual environment and - the test directory is copied from development directory, + the test directory is copied from development directory + with ``cp -Lr ...``:: + + -L, --dereference + always follow symbolic links in SOURCE - finding ``HISTORY.txt`` in test_utils.py fails. Create a HISTORY.txt file to avoid. - - the path to css files is different. -* test_rst/ interpreted directives/code and some more fail - for python 3.8.0b3 and 3.8.1 on Darwin 15.6.0 (MacOSX): - - classes="keyword" is "name builtin" - But not for 3.8.1 on Linux . - Release 0.17 (2021-04-03 ...) ============================= |
