Skip to content

Commit

Permalink
Merge pull request #7 from lsst/tickets/DM-7301
Browse files Browse the repository at this point in the history
Py 3 port
  • Loading branch information
fred3m committed Sep 5, 2016
2 parents cf6d223 + d99b4ac commit 3981c03
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion python/lsst/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import pkgutil, lsstimport
import pkgutil
import lsstimport
__path__ = pkgutil.extend_path(__path__, __name__)
3 changes: 2 additions & 1 deletion python/lsst/meas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import pkgutil, lsstimport
import pkgutil
import lsstimport
__path__ = pkgutil.extend_path(__path__, __name__)
3 changes: 2 additions & 1 deletion python/lsst/meas/extensions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import pkgutil, lsstimport
import pkgutil
import lsstimport
__path__ = pkgutil.extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion python/lsst/meas/extensions/simpleShape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .version import * # generated by sconsUtils

measBase.wrapSimpleAlgorithm(SimpleShape, name="ext_simpleShape_SimpleShape",
Control=SimpleShapeControl, executionOrder=measBase.BasePlugin.SHAPE_ORDER)
Control=SimpleShapeControl, executionOrder=measBase.BasePlugin.SHAPE_ORDER)
1 change: 1 addition & 0 deletions tests/testMeasurementFramework.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def testKeys(self):
for attr in ("center", "ellipse", "covariance", "getFlag"):
self.assertTrue(hasattr(result, attr), "Result Object missing {}".format(attr))


class TestMemory(lsst.utils.tests.MemoryTestCase):
pass

Expand Down
1 change: 1 addition & 0 deletions tests/testSimpleShape.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def testNoNoiseGaussians(self):
numpy.array(center),
rtol=1E-8, atol=1E-15)


class TestMemory(lsst.utils.tests.MemoryTestCase):
pass

Expand Down

0 comments on commit 3981c03

Please sign in to comment.