Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
iMichka committed Feb 28, 2025
1 parent 2761377 commit 6478480
Show file tree
Hide file tree
Showing 4 changed files with 580 additions and 573 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,4 @@ jobs:
- name: Run tests
run: |
export PATH=~/castxml/bin:$PATH
pytest tests
pytest tests/test_core.py
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,7 @@ docs = [
examples = [
"notebook",
]
[tool.pytest.ini_options]
pythonpath = [
'src'
]
3 changes: 3 additions & 0 deletions src/pygccxml/parser/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ def __init__(self, xml_file, decl_factory, config, *args):

self.__xml_generator_from_xml_file = None

with open(self.xml_file, "r") as f:
print(f.read())

@property
def xml_generator_from_xml_file(self):
"""
Expand Down
Loading

0 comments on commit 6478480

Please sign in to comment.