mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-07 02:26:28 +02:00
python to python3 in env. For more distro supported
This commit is contained in:
parent
46dfe24972
commit
5a19e10e06
1 changed files with 1 additions and 2 deletions
|
@ -1,11 +1,10 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import os,subprocess,time,sys
|
import os,subprocess,time,sys
|
||||||
|
|
||||||
##### Setup variables
|
##### Setup variables
|
||||||
tests_timeout=20 # Max duration of a test
|
tests_timeout=20 # Max duration of a test
|
||||||
tests_path = os.path.dirname(os.path.realpath(__file__))
|
tests_path = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
|
||||||
##### Run all tests
|
##### Run all tests
|
||||||
for file in os.listdir(tests_path):
|
for file in os.listdir(tests_path):
|
||||||
current_test_path=os.path.join(tests_path,file)
|
current_test_path=os.path.join(tests_path,file)
|
||||||
|
|
Loading…
Add table
Reference in a new issue