Skip to content

Commit

Permalink
include new test into test-suite
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Oct 30, 2024
1 parent 4d9059c commit d0f283d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pyFAI/opencl/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

__authors__ = ["J. Kieffer"]
__license__ = "MIT"
__date__ = "03/10/2023"
__date__ = "30/10/2024"

import unittest
from ...test.utilstest import UtilsTest
Expand All @@ -42,6 +42,7 @@ def suite():
from . import test_peak_finder
from . import test_ocl_sort
from . import test_openCL
from . import test_collective
testSuite.addTests(test_addition.suite())
testSuite.addTests(test_preproc.suite())
testSuite.addTests(test_openCL.suite())
Expand All @@ -50,4 +51,5 @@ def suite():
testSuite.addTests(test_ocl_azim_lut.suite())
testSuite.addTests(test_peak_finder.suite())
testSuite.addTests(test_ocl_sort.suite())
testSuite.addTests(test_collective.suite())
return testSuite

0 comments on commit d0f283d

Please sign in to comment.