We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a152a commit 638533cCopy full SHA for 638533c
.github/workflows/pip.yml
@@ -45,7 +45,7 @@ jobs:
45
run: pip install --verbose .[test]
46
47
- name: Test import
48
- run: python -c "import pylibbpf; print('Import successful')"
+ run: python -I -c "import pylibbpf; print('Import successful')"
49
50
- name: Test
51
- run: python -m pytest -v
+ run: python -I -m pytest -v
tests/test_basic.py
@@ -2,6 +2,6 @@
2
3
4
def test_main():
5
- assert m.__version__ == "0.0.5"
6
- prog = m.BpfObject("tests/execve2.o")
+ assert m.__version__ == "0.0.6"
+ prog = m.BpfObject("tests/execve2.o", structs={})
7
print(prog)
0 commit comments