diff --git a/.github/workflows/test_ert.yml b/.github/workflows/test_ert.yml index 61164b489a1..e773e2645c3 100644 --- a/.github/workflows/test_ert.yml +++ b/.github/workflows/test_ert.yml @@ -66,8 +66,8 @@ jobs: - name: Unit Test if: inputs.test-type == 'performance-and-unit-tests' run: | - just ert-unit-tests - ERT_PYTEST_ARGS="${{ env.ERT_PYTEST_ARGS }}" just ert-doc-tests + # just ert-unit-tests + ERT_PYTEST_ARGS="-m \'${{ inputs.select-string }}\' --cov=ert --cov=everest --cov=_ert --cov-report=xml:cov1.xml --junit-xml=junit.xml -o junit_family=legacy -v --durations=25 --benchmark-disable" just hello - name: Upload coverage to Codecov id: codecov1 diff --git a/justfile b/justfile index 6d40d270114..2c7960e6083 100644 --- a/justfile +++ b/justfile @@ -10,6 +10,9 @@ snake_oil: pytest_args := env("ERT_PYTEST_ARGS", "--quiet") +hello: + echo "hello world" + # execute rapid unittests rapid-tests: nice pytest -n auto tests/ert/unit_tests tests/everest --hypothesis-profile=fast -m "not integration_test"