| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
This converts the remaining tests that called os.system
themselves to use subprocess instead.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Two concrete changes:
DVIPS/DVIPS test ran only if dvips tool is found, but did not leave
any message if not. Print a skip message if tool not found, which
also lets us dedent the rest of the test for the case where we
continue due to having found it.
TEX/variant_dir test did not check for dvipdf tool, but then calls
the tool. Add a check so we get a skip message instead of a fail
(the fail had lots of lines but it hard to see actual reason).
Fix one test which failed for me due to not checking for its tool.
For the rest, align "Could not find" messages to quote the tool name,
which most of the tests do - so this is just stylistic, has no
functional effect. Also stylistic: use any/all for checking
multiple tools' existence.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
|
|
|
|
|
|
| |
On a linux host (missing some things that may be on the Travis CI
setup), Py3.8a3 now shows 19 fails, 1048 pass, with 84 Warning: messages.
Signed-off-by: Mats Wichmann <mats@linux.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to go.
Update various files to have the correct date, time, version, and floor.
Rework Script/Main.py and QMTest/TestSCons.py to make automated updating
possible in the future.
Remove a duplicate MANIFEST-xml.in entry.
Fix TeX tests, which ran 'kpsewitch' before determining if the TeX tools
were installed.
|
|
|
|
| |
Otherwise skip the test.
|
|
I found that when only one tool (say pdftex) is initialized
that some of the actions for bibtex... are not created.
Moved most common actions and environment settings to one routine
in tex.py that the other text tools (pdftex, pdflatex, latex) call.
Also fixed a typo in the nomenclature action setup. There was
a '$' that should not have been there.
|