Skip to content
Snippets Groups Projects
Commit 7c0c9986 authored by Philipp Rüssmann's avatar Philipp Rüssmann
Browse files

Fix imports in refactored test scripts

parent 4a6adb38
No related branches found
No related tags found
No related merge requests found
......@@ -273,6 +273,11 @@ def cmp_modes(cmplist, path00, s_rms_bound=10**-12, max_s_charges_bound=10**-12)
check convergence and charges across parallel runs
returns dict with rms and charges entries for all paths given in 'cmplist' in parent directory 'path00'
"""
import os
import pprint
from numpy import std
from kkrparser_functions import parse_kkr_outputfile
cmp_values = {'rms':[], 'charges':[]}
for addpath in cmplist:
path0 = path00+'/'+addpath
......
......@@ -4,9 +4,7 @@
from __future__ import print_function
#import pytest
import os, pprint
from kkrparser_functions import parse_kkr_outputfile
from numpy import std, array
from numpy import array
from common_functions import search_string, cmp_modes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment