-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #720 from nrmendoza/f/CCT2-IFW_wrapper
inflowWind C-bound interface and python wrapper
- Loading branch information
Showing
15 changed files
with
1,366 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
name: 'InflowWind module tests' | ||
description: 'Run tests specific to the InflowWind module' | ||
author: 'Rafael Mudafort https://github.com/rafmudaf' | ||
|
||
inputs: | ||
test-target: | ||
description: 'Which tests to run: unit | regression | all' | ||
default: 'all' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- run: ctest -VV -R inflowwind_utest | ||
steps: | ||
- run: | | ||
if [[ ${{ inputs.test-target }} == "unit" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then | ||
ctest -VV -R inflowwind_utest | ||
fi | ||
if [[ ${{ inputs.test-target }} == "regression" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then | ||
ctest -VV -j7 -R ifw_ -LE python | ||
# Exclude the Python-interface tests since those are run directly in the job | ||
fi | ||
working-directory: ${{runner.workspace}}/openfast/build | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.