Skip to content

Commit

Permalink
fix testing unit test action
Browse files Browse the repository at this point in the history
  • Loading branch information
fullbat committed Mar 14, 2024
1 parent c25d131 commit 15e74f7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,14 @@ def check_results(pickle_result, ref_pickle):

def run_tests():
local_path = os.path.join(os.path.dirname( os.path.realpath( __file__ ) ), 'demo_data')
out_path = os.path.join( local_path, 'ref_results' )
ref_pickle_StickZeppelinBall = os.path.join( local_path, 'ref_results', 'ref_results_StickZeppelinBall.pickle' )
ref_pickle_BallandStick = os.path.join( local_path, 'ref_results', 'ref_results_BallandStick.pickle' )
# ref_pickle_VolumeFractions = os.path.join( local_path, 'results_VolumeFractions.pickle' )
run_commit_StickZeppelinBall(local_path)
results_pickle = os.path.join( out_path, 'COMMIT', 'Results_StickZeppelinBall', 'results.pickle' )
results_pickle = os.path.join( local_path, 'COMMIT', 'Results_StickZeppelinBall', 'results.pickle' )
check_results(results_pickle, ref_pickle_StickZeppelinBall)
run_commit_BallandStick(local_path)
results_pickle = os.path.join( out_path, 'COMMIT', 'Results_StickZeppelinBall', 'results.pickle' )
results_pickle = os.path.join( local_path, 'COMMIT', 'Results_StickZeppelinBall', 'results.pickle' )
check_results(results_pickle, ref_pickle_BallandStick)
# run_commit_VolumeFractions()
# results_pickle = os.path.join( local_path, 'demo_data', 'COMMIT', 'Results_VolumeFractions', 'results.pickle' )
Expand Down

0 comments on commit 15e74f7

Please sign in to comment.