Skip to content

Commit

Permalink
Fix mac-test
Browse files Browse the repository at this point in the history
  • Loading branch information
gen740 committed Sep 26, 2023
1 parent 6fe5ad1 commit f25aa07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ jobs:
run: |
pytest
env:
CPPYGEN_COMPILE_FLAGS: -nostdinc -isystem/usr/local/opt/llvm/bin/../include/c++/v1 -isystem/usr/local/Cellar/llvm/16.0.5/lib/clang/16/include -isystem/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk/usr/include
CPPYGEN_COMPILE_FLAGS: -nostdinc -isystem/usr/local/opt/llvm/bin/../include/c++/v1 -isystem/usr/local/opt/llvm/lib/clang/17/include -isystem/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk/usr/include
CPPYGEN_LIBCLANG_PATH: /usr/local/opt/llvm/lib/libclang.dylib
3 changes: 2 additions & 1 deletion tests/test_components.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from cppygen.function import Function
from cppygen.submodule import Submodule
from cppygen.cppclass import CppClass


def test_function():
Expand Down Expand Up @@ -88,7 +89,7 @@ def test_submod_compare():


def test_struct_or_class():
soc = StructOrClass()
soc = CppClass()

soc.set_name("class1", ["mod1", "mod2"])
soc.set_description("this is class 1")
Expand Down

0 comments on commit f25aa07

Please sign in to comment.