Skip to content
Snippets Groups Projects

GaudiKernel: migrate tests to pytest and various fixes

Merged Frank Winklmeier requested to merge fwinkl/Gaudi:gaudikernel_test into master
2 files
+ 3
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -8,12 +8,12 @@
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
#####################################################################################
# Prepare dummy configurables
import pytest
from GaudiKernel.Configurable import Configurable, ConfigurableAlgorithm
from GaudiKernel.DataHandle import DataHandle
import pytest
# Prepare dummy configurables
class MyAlg(ConfigurableAlgorithm):
__slots__ = {
"Text": "some text",
Loading