Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/tests-module-seastate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ author: 'Rafael Mudafort https://github.com/rafmudaf'
runs:
using: "composite"
steps:
- run: ctest -VV -j7 -R seastate_ -LE python
- run: ctest -VV -j4 -R seastate_ -LE python
working-directory: ${{runner.workspace}}/openfast/build
shell: bash
2 changes: 1 addition & 1 deletion reg_tests/CTestList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -458,13 +458,13 @@ py_ifw_regression("py_ifw_turbsimff" "inflowwind;python

# SeaState regression tests
seast_regression("seastate_1" "seastate")
seast_regression("seastate_wavemod5" "seastate")
seast_regression("seastate_wr_kin1" "seastate")
seast_regression("seastate_CNW1" "seastate")
seast_regression("seastate_CNW2" "seastate")
seast_regression("seastate_WaveMod7_WaveStMod1" "seastate")
seast_regression("seastate_WaveMod7_WaveStMod2" "seastate")
seast_regression("seastate_WaveMod7_WaveStMod3" "seastate")
seast_regression("seastate_wavemod5" "seastate") # place at end since it reads outputs generated by seastate_wr_kin1

# MoorDyn regression tests
md_regression("md_5MW_OC4Semi" "moordyn")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeAerodynPyRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeAerodynRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeBeamdynRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeFASTFarmRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)


### Build the filesystem navigation variables for running openfast on the test case
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeHydrodynPyRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeHydrodynRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeInflowwindPyRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeInflowwindRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeMoordynPyRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeMoordynRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastAeroAcousticRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running openfast on the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastCppRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)


### Build the filesystem navigation variables for running openfast on the test case
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastLinearRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def indent(msg, sindent='\t'):
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running openfast on the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeOpenfastRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)


### Build the filesystem navigation variables for running openfast on the test case
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executePythonRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
# validate inputs
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)


### Build the filesystem navigation variables for running openfast on the test case
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeSeaStateRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeSubdynRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down
2 changes: 1 addition & 1 deletion reg_tests/executeUnsteadyAeroRegressionCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
rtl.validateExeOrExit(executable)
rtl.validateDirOrExit(sourceDirectory)
if not os.path.isdir(buildDirectory):
os.makedirs(buildDirectory)
os.makedirs(buildDirectory, exist_ok=True)

### Build the filesystem navigation variables for running the test case
regtests = os.path.join(sourceDirectory, "reg_tests")
Expand Down