Skip to content

Commit

Permalink
Pull noBuildList out of argument call to match ignoreList
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Aug 8, 2017
1 parent 3fbcf10 commit 1d4a97a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +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)

0 comments on commit 1d4a97a

Please sign in to comment.