Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

packages/framework: Try to override dynamic package enables #10623

Merged
merged 1 commit into from
Jun 16, 2022
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 packages/framework/pr_tools/pullrequest-specs.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - `package_subproject_list.cmake` and
#
# Instead of using the TriBiTS tool to determine changes.
python-3: TrilinosFrameworkTests
Trilinos_PR_python3: TrilinosFrameworkTests
Trilinos-pullrequest-gcc-8.3.0-installation-testing A: Teuchos
Trilinos-pullrequest-gcc-8.3.0-installation-testing B: Tpetra
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - `package_subproject_list.cmake` and
#
# Instead of using the TriBiTS tool to determine changes.
python-3: TrilinosFrameworkTests
Trilinos_PR_python3: TrilinosFrameworkTests
Trilinos-pullrequest-gcc-8.3.0-installation-testing A: Teuchos
Trilinos-pullrequest-gcc-8.3.0-installation-testing B: Tpetra
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ def dummy_args_python3(self):
Generate dummy command line arguments
"""
args = copy.deepcopy(self.dummy_args())
args.pullrequest_build_name = "python-3"
args.genconfig_build_name = "python-3"
args.pullrequest_build_name = "Trilinos_PR_python3"
args.genconfig_build_name = "Trilinos_PR_python3"
return args


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def test_TrilinosPRConfigurationStandardPython3(self):
- Change args to enable dry_run mode.
"""
args = self.dummy_args()
args.pullrequest_build_name = "python-3"
args.pullrequest_build_name = "Trilinos_PR_python3"
pr_config = trilinosprhelpers.TrilinosPRConfigurationStandard(args)

# prepare step
Expand Down