Skip to content
Draft
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
10 changes: 5 additions & 5 deletions .github/workflows/test_ert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Install ert
run: |
uv sync --group dev
uv sync --no-editable --group dev

# Randomizes test ordering (and reseeds RNGs) to detect order-dependent
# flaky tests. The chosen seed is printed in
Expand All @@ -65,7 +65,7 @@ jobs:
run: |
touch storage
chmod 000 storage
uv run just ert-gui-tests
uv run --no-editable just ert-gui-tests
chmod 700 storage
rm storage

Expand All @@ -83,7 +83,7 @@ jobs:
run: |
touch storage
chmod 000 storage
uv run just ert-cli-tests
uv run --no-editable just ert-cli-tests
chmod 700 storage
rm storage

Expand All @@ -92,7 +92,7 @@ jobs:
run: |
touch storage
chmod 000 storage
uv run just ert-unit-tests
uv run --no-editable just ert-unit-tests
ERT_PYTEST_ARGS='--cov=ert --cov=everest --cov=_ert --cov-report=xml:cov_docs.xml --junit-xml=junit-doc.xml -o junit_family=legacy -v --durations=25 --benchmark-disable' uv run just ert-doc-tests
ERT_PYTEST_ARGS='--cov=ert --cov=everest --cov=_ert --cov-report=xml:cov_mem.xml --junit-xml=junit-mem.xml -o junit_family=legacy -v --durations=25 --benchmark-disable' uv run just ert-memory-tests
chmod 700 storage
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Test CLI
run: |
uv run ert --help
uv run --no-editable ert --help

- name: Test for a clean repository
run: |
Expand Down
Loading