Skip to content

Commit

Permalink
Merge pull request #89 from lsst/tickets/DM-11514-meas_base
Browse files Browse the repository at this point in the history
DM-11514: Fix pytest execution
  • Loading branch information
timj committed Aug 9, 2017
2 parents cd81c4c + 1d4a97a commit 2b73ae2
Show file tree
Hide file tree
Showing 34 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tests/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
from lsst.sconsUtils import scripts

pybind11_test_modules = ['sillyCentroid',]
noBuildList = [name + '.cc' for name in pybind11_test_modules]
ignoreList = [name + '.py' for name in pybind11_test_modules]
ignoreList.append('testLib.py')

scripts.BasicSConscript.pybind11(pybind11_test_modules)
scripts.BasicSConscript.tests(noBuildList=[name + '.cc' for name in pybind11_test_modules])
scripts.BasicSConscript.tests(noBuildList=noBuildList,
ignoreList=ignoreList)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/centroid.py → tests/test_centroid.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class MemoryTester(lsst.utils.tests.MemoryTestCase):
pass


def setup_modul(module):
def setup_module(module):
lsst.utils.tests.init()


Expand Down

0 comments on commit 2b73ae2

Please sign in to comment.