fixup test for cfg_editor utils to run from non-checkout, and fix names, and remove example code

Change-Id: I6224244392e2a2d0928065ba24abcbe822096084
Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/34934
Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de>
Reviewed-by: Alexander Zaft <a.zaft@fz-juelich.de>
This commit is contained in:
Georg Brandl
2024-11-07 10:36:11 +01:00
committed by Alexander Zaft
parent 78cc236f55
commit 9f35a7a7b9
4 changed files with 17 additions and 33 deletions

View File

@@ -2,20 +2,3 @@
import pytest
@pytest.fixture(scope="module")
def constants():
# setup
class Constants:
ONE = 1
TWO = 2
c = Constants()
yield c
# teardown
del c
# pylint: disable=redefined-builtin
@pytest.fixture(scope="session")
def globals():
return {}