summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2016-12-09 12:35:56 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2016-12-09 12:35:56 +0000
commita68dffcfe52f05cef1c802c2d7752afc7cb7c1ff (patch)
treede1065a57704570d7cde41311447490dc98f011d
parenta7819d49edd8321ecec23c520bfc95b73f2ade58 (diff)
downloaddocutils-a68dffcfe52f05cef1c802c2d7752afc7cb7c1ff.tar.gz
fix release_test.sh
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7987 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--sandbox/infrastructure/release-test.sh4
-rw-r--r--sandbox/infrastructure/releasing-log.txt37
2 files changed, 21 insertions, 20 deletions
diff --git a/sandbox/infrastructure/release-test.sh b/sandbox/infrastructure/release-test.sh
index 2b26da261..f570f6d42 100644
--- a/sandbox/infrastructure/release-test.sh
+++ b/sandbox/infrastructure/release-test.sh
@@ -83,10 +83,10 @@ cd docutils-"$docutils_ver"
python$py_ver setup.py build
sudo python$py_ver setup.py install
echo
-echo "Remove dcoutils code directory from tarball_test to make sure it is not used.."
+echo "Remove __init__.py from docutils code directory to make sure it is not used.."
echo "TODO for python3."
read
-rm -rf docutils
+rm -rf docutils/__init__.py
# BUG test-dependecies.py
# * breaks on record.txt access if not run as root
diff --git a/sandbox/infrastructure/releasing-log.txt b/sandbox/infrastructure/releasing-log.txt
index d33a00a59..80b2c4766 100644
--- a/sandbox/infrastructure/releasing-log.txt
+++ b/sandbox/infrastructure/releasing-log.txt
@@ -32,24 +32,25 @@ Tests are run from svn checkout, only few from install.
* ubuntu 12.04 python 2.7.3: OK
* ubuntu 12.04 python 3.2.3: OK
-testing tarball 0.13.1 (build sdist) ::
-
- +++ functional/output/standalone_rst_html5.html
- @@ -7,9 +7,9 @@
- <meta name="author" content="David Goodger" />
- <meta content="reStructuredText, test, parser" name="keywords" />
- <meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
- -<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
- -<link rel="stylesheet" href="../input/data/plain.css" type="text/css" />
- -<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
- +<link rel="stylesheet" href="../../minimal.css" type="text/css" />
- +<link rel="stylesheet" href="../../plain.css" type="text/css" />
- +<link rel="stylesheet" href="../../math.css" type="text/css" />
- </head>
- <body>
- <div class="header">
-
- IN WORK
+* testing tarball 0.13.1 (build sdist) ::
+
+ +++ functional/output/standalone_rst_html5.html
+ @@ -7,9 +7,9 @@
+ <meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
+ -<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
+ -<link rel="stylesheet" href="../input/data/plain.css" type="text/css" />
+ -<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
+ +<link rel="stylesheet" href="../../minimal.css" type="text/css" />
+ +<link rel="stylesheet" href="../../plain.css" type="text/css" />
+ +<link rel="stylesheet" href="../../math.css" type="text/css" />
+ </head>
+
+ this is because ``test/functional/input/data/minimal.css`` is a symlink to
+ ``../../../../docutils/writers/html5_polyglot/minimal.css`` and release_test.sh
+ removes directory docutils to ensure the test uses the installed docutils
+ not the unzipped.
+
+ FIX: remove docutils/__init__.py
Release 0.12
============