12 lines
256 B
Python
Executable file
12 lines
256 B
Python
Executable file
#!/bin/env -S python
|
|
|
|
from os.path import dirname
|
|
import sys
|
|
|
|
from okipy.lib import get_inline_suite
|
|
|
|
sys.path.append(f"{dirname(__file__)}/../src")
|
|
import pyalibert # executes inline tests
|
|
|
|
|
|
if __name__ == "__main__": get_inline_suite().run(sys.argv[1:])
|