Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions test/python/registry.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import sys

import cppyy
import pyphlex
import pyphlex # noqa: F401

__all__ = ['pyphlex']
cpp = cppyy.gbl
phlex = cpp.phlex.experimental

Expand Down
6 changes: 3 additions & 3 deletions test/python/test_phlex.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import py
from pytest import raises


class TestPYPHLEX:

@classmethod
def setup_class(cls):
import pyphlex
import pyphlex # noqa: F401
__all__ = ['pyphlex'] # For CodeQL

def test01_phlex_existence(self):
"""Test existence of the phlex namespace"""
Expand Down
Loading