Changes between Initial Version and Version 8 of Ticket #5155
- Timestamp:
- 10/17/11 12:24:04 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5155
-
Property
Status
changed from
new
toneeds_work
-
Property
Authors
changed from
to
Mike Hansen
- Property Cc lftabera added
-
Property
Summary
changed from
Sage 3.3.a3: fix doctests that want write access to $SAGE_LOCAL
toFix doctests and methods that want write access to $SAGE_LOCAL
-
Property
Dependencies
changed from
to
#11926
-
Property
Report Upstream
changed from
to
N/A
- Property Owner changed from mabshoff to jdemeyer
-
Property
Status
changed from
-
Ticket #5155 – Description
initial v8 1 All doctests in Sage should pass when they are run as a user that does not own the Sage tree. To do that set SAGE_TESTDIR to some place writable, i.e.1 All doctests in Sage should pass when they are run as a user that does not have write access to the Sage install. To do that, set SAGE_TESTDIR to some place writable, for example 2 2 {{{ 3 export SAGE_TESTDIR= /scratch/mabshoff/tmp3 export SAGE_TESTDIR=$HOME/tmp 4 4 }}} 5 and run the doctests on a Sage install that isn't owned by the user. When doing so the following doctests fail: 5 and run the doctests on a Sage install that isn't owned by the user: 6 {{{ 7 $ ./sage -tp 6 devel/sage/doc/common devel/sage/doc/de devel/sage/doc/en devel/sage/doc/fr devel/sage/doc/ru devel/sage/sage 8 }}} 9 10 Here, we assume that the owner of the Sage install has run Sage at least once (or has applied #11926) and has ran some doctest. 11 12 On sage-4.7.2.alpha4, this causes the following failures: 6 13 {{{ 7 14 sage -t -long devel/sage/sage/matrix/matrix2.pyx # 1 doctests failed … … 18 25 sage -t -long devel/sage/sage/structure/sage_object.pyx # 6 doctests failed 19 26 }}} 20 This ticket might need to be split up since it covers a rather large number of doctest failures.21 22 Cheers,23 24 Michael