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

Skip two tests that are blocking CI with hangs #3090

Merged
merged 1 commit into from
Feb 20, 2024
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ perf_test:
parsl-perf --time 5 --config parsl/tests/configs/local_threads.py

.PHONY: test ## run all tests with all config types
test: clean_coverage lint flake8 mypy local_thread_test htex_local_test htex_local_alternate_test wqex_local_test vineex_local_test radical_local_test config_local_test perf_test ## run all tests
test: clean_coverage lint flake8 mypy local_thread_test htex_local_test htex_local_alternate_test wqex_local_test radical_local_test config_local_test perf_test ## run all tests
# vineex_local_test removed from this test: target - waiting for resolution of issue #3089

.PHONY: tag
tag: ## create a tag in git. to run, do a 'make VERSION="version string" tag
Expand Down
1 change: 1 addition & 0 deletions parsl/tests/test_radical/test_mpi_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def some_mpi_func(msg, sleep, comm=None, parsl_resource_specification={}):
apps = []


@pytest.mark.skip("hangs in CI - waiting for resolution of issue #3029")
@pytest.mark.local
@pytest.mark.radical
def test_radical_mpi(n=7):
Expand Down
Loading