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

Fix select-string #9895

Merged
merged 2 commits into from
Jan 29, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/test_ert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
type: string
select-string:
type: string
default: "''"
default: '""'

env:
ERT_SHOW_BACKTRACE: 1
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
if: inputs.test-type == 'performance-and-unit-tests'
run: |
just ert-unit-tests
ERT_PYTEST_ARGS="-m ${{ inputs.select-string }} --cov=ert --cov=everest --cov=_ert --cov-report=xml:cov2.xml --junit-xml=junit.xml -o junit_family=legacy -v --durations=25 --benchmark-disable" just ert-doc-tests
ERT_PYTEST_ARGS='-m ${{ inputs.select-string }} --cov=ert --cov=everest --cov=_ert --cov-report=xml:cov2.xml --junit-xml=junit.xml -o junit_family=legacy -v --durations=25 --benchmark-disable' just ert-doc-tests

- name: Upload coverage to Codecov
id: codecov1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ async def test_evaluator_handles_dispatchers_connected(
assert evaluator._dispatchers_empty.is_set()


@pytest.mark.integration_test
async def test_evaluator_raises_on_start_with_address_in_use(make_ee_config):
ee_config = make_ee_config(use_ipc_protocol=False)
ctx = zmq.asyncio.Context()
Expand Down
Loading