Skip to content

Commit

Permalink
Revert path changes (see OpenFAST#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafmudaf committed Aug 18, 2022
1 parent 134959c commit 783925f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion reg_tests/executeFASTFarmRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
import argparse
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeHydrodynPyRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
import argparse
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastCppRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
import argparse
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastLinearRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
import argparse
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
import argparse
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executePythonRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import os
import sys
basepath = os.path.dirname(__file__)
basepath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.sep.join([basepath, "lib"]))
sys.path.insert(0, os.path.sep.join([basepath, "..", "glue-codes", "python"]))
import platform
Expand Down

0 comments on commit 783925f

Please sign in to comment.