7 lines
204 B
Python
Executable File
7 lines
204 B
Python
Executable File
#!/data/programare_AI/tfm_ainventory/venv/bin/python3
|
|
import sys
|
|
from pytest import console_main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(console_main())
|