mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 19:43:41 +02:00
first steps to testing input methods
This commit is contained in:
parent
dc6b844fa4
commit
a839592ea8
12 changed files with 7096 additions and 0 deletions
29
tests/sfcf_in_test.py
Normal file
29
tests/sfcf_in_test.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
import os,sys,inspect
|
||||
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
|
||||
parent_dir = os.path.dirname(current_dir)
|
||||
sys.path.insert(0, parent_dir)
|
||||
|
||||
import pyerrors as pe
|
||||
import pyerrors.input.openQCD as qcdin
|
||||
import pyerrors.input.sfcf as sfin
|
||||
import shutil
|
||||
import pytest
|
||||
|
||||
from time import sleep
|
||||
|
||||
n = 5
|
||||
def o_test():
|
||||
for i in range(2,n+1):
|
||||
os.mkdir("data/sfcf_test/data_o/cfg"+str(i))
|
||||
shutil.copy("data/sfcf_test/data_o/cfg1/f_1","data/sfcf_test/data_o/cfg"+str(i))
|
||||
shutil.copy("data/sfcf_test/data_o/cfg1/f_A","data/sfcf_test/data_o/cfg"+str(i))
|
||||
shutil.copy("data/sfcf_test/data_o/cfg1/F_V0","data/sfcf_test/data_o/cfg"+str(i))
|
||||
|
||||
o = sfin.read_sfcf("data/sfcf_test/data_o", "qcd2sf_T24L24_b3.685_k0.1394400_id0", "f_A",quarks="lquark lquark", noffset=15)#, files = ["qcd2sf_T24L24_b3.685_k0.1394400_id0_r0_n50","qcd2sf_T24L24_b3.685_k0.1394400_id0_r0_n100","qcd2sf_T24L24_b3.685_k0.1394400_id0_r0_n120","qcd2sf_T24L24_b3.685_k0.1394400_id0_r0_n140","qcd2sf_T24L24_b3.685_k0.1394400_id0_r0_n150"])
|
||||
|
||||
|
||||
sleep(10)
|
||||
for i in range(2,n+1):
|
||||
shutil.rmtree("data/sfcf_test/data_o/cfg"+str(i))
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue