Changes between Initial Version and Version 2 of Ticket #30268
- Timestamp:
- 08/02/20 10:36:38 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30268
-
Property
Summary
changed from
Use "./sage -t", not "sage -t" in test output
toUse `./sage -t`, not `sage -t` in output of tests ran from `SAGE_ROOT`
-
Property
Summary
changed from
-
Ticket #30268 – Description
initial v2 1 This is to modify output of tests in the case where 2 `SAGE_ROOT` exists and tests are ran from `SAGE_ROOT`. 3 4 For example when running `make test` when building 5 Sage in an extracted source tarball or a git clone. 6 1 7 Before this ticket, failures and timeouts show with `sage -t`: 2 8 {{{ 3 ----------------------------------------------------------------------4 9 sage -t --random-seed=0 src/sage/misc/latex.py # 1 doctest failed 5 10 sage -t --random-seed=0 src/sage/plot/animate.py # Timed out 6 ----------------------------------------------------------------------7 11 }}} 8 12 9 13 After this ticket, failures and timeouts show with `./sage -t`: 10 14 {{{ 11 ----------------------------------------------------------------------12 15 ./sage -t --random-seed=0 src/sage/misc/latex.py # 1 doctest failed 13 16 ./sage -t --random-seed=0 src/sage/plot/animate.py # Timed out 14 ----------------------------------------------------------------------15 17 }}} 16 18