|
From: <as...@us...> - 2009-08-30 00:03:38
|
Revision: 7586
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7586&view=rev
Author: astraw
Date: 2009-08-30 00:03:25 +0000 (Sun, 30 Aug 2009)
Log Message:
-----------
remove 'import *' usage
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-29 18:14:28 UTC (rev 7585)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-30 00:03:25 UTC (rev 7586)
@@ -2,7 +2,7 @@
"""The Axes unit-test class implementation."""
#=======================================================================
-from mplTest import *
+from mplTest import MplTestCase
#=======================================================================
# Add import modules below.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <as...@us...> - 2009-08-30 00:08:45
|
Revision: 7587
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7587&view=rev
Author: astraw
Date: 2009-08-30 00:08:34 +0000 (Sun, 30 Aug 2009)
Log Message:
-----------
testing: add missing import and add SF bug ID
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-30 00:03:25 UTC (rev 7586)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-30 00:08:34 UTC (rev 7587)
@@ -2,7 +2,7 @@
"""The Axes unit-test class implementation."""
#=======================================================================
-from mplTest import MplTestCase
+from mplTest import MplTestCase, units
#=======================================================================
# Add import modules below.
@@ -88,6 +88,8 @@
fig.savefig( fname )
self.checkImage( fname )
+ # See SF bug 2846058
+ # https://sourceforge.net/tracker/?func=detail&aid=2846058&group_id=80706&atid=560720
fname = self.outFile( "formatter_ticker_005.png" )
ax.set_xlabel( "x-label 005" )
ax.autoscale_view()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <jd...@us...> - 2009-08-30 16:29:43
|
Revision: 7602
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7602&view=rev
Author: jdh2358
Date: 2009-08-30 16:29:30 +0000 (Sun, 30 Aug 2009)
Log Message:
-----------
removed known failure decorator for sf bug 2846058
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-30 16:25:46 UTC (rev 7601)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-30 16:29:30 UTC (rev 7602)
@@ -58,7 +58,6 @@
self.checkImage( fname )
#--------------------------------------------------------------------
- @knownfailureif(True, "Fails due to SF bug 2846058")
def test_formatter_ticker( self ):
"""Test Some formatter and ticker issues."""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <as...@us...> - 2009-08-31 04:47:03
|
Revision: 7612
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7612&view=rev
Author: astraw
Date: 2009-08-31 04:46:55 +0000 (Mon, 31 Aug 2009)
Log Message:
-----------
buildbot: force error to test reporting abilities
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-31 02:48:42 UTC (rev 7611)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-31 04:46:55 UTC (rev 7612)
@@ -45,6 +45,8 @@
#--------------------------------------------------------------------
def test_empty_datetime( self ):
"""Test plotting empty axes with dates along one axis."""
+ if 1:
+ raise RuntimeError('error forced to test buildbot error reporting')
fname = self.outFile( "empty_datetime.png" )
t0 = datetime(2009, 1, 20)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <as...@us...> - 2009-08-31 05:23:44
|
Revision: 7613
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7613&view=rev
Author: astraw
Date: 2009-08-31 05:23:37 +0000 (Mon, 31 Aug 2009)
Log Message:
-----------
buildbot: removed forced error
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-31 04:46:55 UTC (rev 7612)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-08-31 05:23:37 UTC (rev 7613)
@@ -45,8 +45,6 @@
#--------------------------------------------------------------------
def test_empty_datetime( self ):
"""Test plotting empty axes with dates along one axis."""
- if 1:
- raise RuntimeError('error forced to test buildbot error reporting')
fname = self.outFile( "empty_datetime.png" )
t0 = datetime(2009, 1, 20)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <as...@us...> - 2009-09-03 16:01:07
|
Revision: 7632
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7632&view=rev
Author: astraw
Date: 2009-09-03 16:01:00 +0000 (Thu, 03 Sep 2009)
Log Message:
-----------
Testing: mark test with knownfailure decorator
This will let the buildbots detect any new errors while we figure out
what's going on with this one.
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-09-03 14:36:37 UTC (rev 7631)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-09-03 16:01:00 UTC (rev 7632)
@@ -43,6 +43,7 @@
pass
#--------------------------------------------------------------------
+ @knownfailureif(True, "Fails due to SF bug 2850075")
def test_empty_datetime( self ):
"""Test plotting empty axes with dates along one axis."""
fname = self.outFile( "empty_datetime.png" )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <as...@us...> - 2009-09-06 01:42:43
|
Revision: 7643
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7643&view=rev
Author: astraw
Date: 2009-09-06 01:42:36 +0000 (Sun, 06 Sep 2009)
Log Message:
-----------
testing: switch known failure condition to 'indeterminate' for SF bug 2850075
Modified Paths:
--------------
trunk/matplotlib/test/test_matplotlib/TestAxes.py
Modified: trunk/matplotlib/test/test_matplotlib/TestAxes.py
===================================================================
--- trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-09-06 01:42:27 UTC (rev 7642)
+++ trunk/matplotlib/test/test_matplotlib/TestAxes.py 2009-09-06 01:42:36 UTC (rev 7643)
@@ -43,7 +43,7 @@
pass
#--------------------------------------------------------------------
- @knownfailureif(True, "Fails due to SF bug 2850075")
+ @knownfailureif('indeterminate', "Fails due to SF bug 2850075")
def test_empty_datetime( self ):
"""Test plotting empty axes with dates along one axis."""
fname = self.outFile( "empty_datetime.png" )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|